fd

CLI>=8.0

A simple, fast, and user-friendly alternative to find.

6 views

Installation

Homebrewbrew install fd
Cargocargo install fd-find

Links

License

MIT OR Apache-2.0

AI Agent Notes

Faster, friendlier alternative to the Unix find command

When to use

Finding files by name or pattern, simpler syntax than find

Examples
  • fd '*.ts' src/
  • fd -e json

Proven Recipes

Find files by extension🟢 99% success
fd -e ts .
Find files by name pattern🟢 99% success
fd 'config' .
Find and delete files🟢 94% success
fd -e log . --exec rm {}
⚠ Common failures (1)
  • Deletes unintended filesPreview first: fd -e log . (no --exec)