fd
CLI>=8.0A simple, fast, and user-friendly alternative to find.
6 views
Installation
Homebrew
brew install fdCargo
cargo install fd-findLinks
License
MIT OR Apache-2.0AI 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 files → Preview first: fd -e log . (no --exec)