
A simple, fast, and user-friendly alternative to the 'find' command for filesystem searches.
Visit WebsitePros
Cons
Free
No reviews yet. Be the first to review Fd!
fd employs a smart case feature. By default, searches are case-insensitive. However, if the search pattern includes an uppercase character, fd automatically switches to a case-sensitive search.
By default, fd does not search within hidden directories and excludes hidden files from its search results. This behavior can be overridden using the -H or --hidden option.
fd respects .gitignore patterns by default, meaning it will not search folders or display files that match entries in your .gitignore files. To disable this, you can use the -I or --no-ignore option.
Yes, fd provides functionality to execute external commands for each of the search results. This is achieved using the -x or --exec option.
To search for files with a particular extension, use the -e or --extension option followed by the desired extension. This can also be combined with a search pattern for more refined results.
Source: github.com