logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Find Files - Search Files Quickly with fd | Online Free DevTools by Hexmos

Search files quickly with fd. Find files by name, extension, or directory recursively. A faster and easier alternative to find. Free online tool, no registration required.

fd

An alternative to find. Aims to be faster and easier to use than find. More information: https://github.com/sharkdp/fd#how-to-use.

  • Recursively find files matching a specific pattern in the current directory:

fd "{{string|regex}}"

  • Find files that begin with a specific string:

fd "{{^string}}"

  • Find files with a specific extension:

fd {{[-e|--extension]}} {{txt}}

  • Find files in a specific directory:

fd "{{string|regex}}" {{path/to/directory}}

  • Include ignored and hidden files in the search:

fd {{[-H|--hidden]}} {{[-I|--no-ignore]}} "{{string|regex}}"

  • Execute a command on each search result returned:

fd "{{string|regex}}" {{[-x|--exec]}} {{command}}

See Also