fd: add page (#1563)

coverage
Starbeamrainbowlabs 2017-10-24 10:51:39 +01:00 committed by GitHub
commit fc91506f66
1 changed files with 23 additions and 0 deletions

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}}`