mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 23:15:33 +02:00
find: clarify description (#15542)
This commit is contained in:
parent
8386f3c243
commit
0251455894
1 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
- Find files matching multiple path/name patterns:
|
||||
|
||||
`find {{root_path}} -path '{{**/path/**/*.ext}}' -or -name '{{*pattern*}}'`
|
||||
`find {{root_path}} -path '{{*/path/*/*.ext}}' -or -name '{{*pattern*}}'`
|
||||
|
||||
- Find directories matching a given name, in case-insensitive mode:
|
||||
|
||||
|
@ -31,6 +31,6 @@
|
|||
|
||||
`find {{root_path}} -daystart -mtime {{-1}} -exec {{tar -cvf archive.tar}} {} \+`
|
||||
|
||||
- Find empty files (0 byte) or directories and delete them verbosely:
|
||||
- Search for either empty files or directories and delete them verbosely:
|
||||
|
||||
`find {{root_path}} -type {{f|d}} -empty -delete -print`
|
||||
|
|
Loading…
Add table
Reference in a new issue