mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
3358db816e
Co-Authored-By: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
507 B
507 B
fd
An alternative to
find
. Aims to be faster and easier to use thanfind
. More information: https://github.com/sharkdp/fd.
- Find files matching the given pattern in the current directory:
fd {{pattern}}
- Find files that begin with "foo":
fd {{'^foo'}}
- Find files with a specific extension:
fd --extension {{txt}}
- Find files in a specific directory:
fd {{pattern}} {{path/to/dir}}
- Include ignored and hidden files in the search:
fd --hidden --no-ignore {{pattern}}