mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 12:15:27 +02:00
fd: add page
This commit is contained in:
parent
9a0703c3be
commit
0c4edde86b
1 changed files with 19 additions and 0 deletions
19
pages/common/fd.md
Normal file
19
pages/common/fd.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# fd
|
||||
|
||||
> A simple, fast and user-friendly alternative to find.
|
||||
|
||||
- Find files under current dir that match foo:
|
||||
|
||||
`fd foo`
|
||||
|
||||
- Find files that begin with foo:
|
||||
|
||||
`fd '^foo'`
|
||||
|
||||
- Find files matching test with a specific extension and under a specific dir:
|
||||
|
||||
`fd --extension js test ./src`
|
||||
|
||||
- Find files matching config, include ignored and hidden files:
|
||||
|
||||
`fd --hidden --no-ignore config`
|
Loading…
Add table
Reference in a new issue