Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-18 00:20:54 +00:00
parent 5e29c3e5bb
commit 83af6b3c72
22 changed files with 325 additions and 29 deletions

View File

@@ -5,8 +5,8 @@ source: https://github.com/tldr-pages/tldr.git
---
# fd
> An alternative to `find`.
> Aims to be faster and easier to use than `find`.
> Find entries in the filesystem.
> See also: `find`.
> More information: <https://github.com/sharkdp/fd#how-to-use>.
- Recursively find files matching a specific pattern in the current directory:
@@ -29,6 +29,10 @@ source: https://github.com/tldr-pages/tldr.git
`fd {{[-H|--hidden]}} {{[-I|--no-ignore]}} "{{string|regex}}"`
- Exclude files that match a specific `regex`:
`fd {{string}} {{[-E|--exclude]}} {{regex}}`
- Execute a command on each search result returned:
`fd "{{string|regex}}" {{[-x|--exec]}} {{command}}`