1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 13:33:43 +02:00

fd: add page (#1563)

This commit is contained in:
Starbeamrainbowlabs 2017-10-24 10:51:39 +01:00 committed by GitHub
commit fc91506f66

23
pages/common/fd.md Normal file
View file

@ -0,0 +1,23 @@
# fd
> A simple, fast and user-friendly alternative to find.
- Find files under current directory that match a pattern:
`fd {{pattern}}`
- Find files that begin with foo:
`fd {{'^foo'}}`
- Find files with a specific extension:
`fd --extension {{.ext}} {{pattern}}`
- Find files under a specific directory:
`fd {{pattern}} {{path/to/dir}}`
- Include ignored and hidden files in search:
`fd --hidden --no-ignore {{pattern}}`