mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-15 06:12:59 +00:00
Merge pull request #159 from terminalforlife/master
Note find(1)'s recursivity & use of `.` for CWD
This commit is contained in:
commit
876cb68adb
@ -4,6 +4,9 @@
|
||||
# Find files by case-insensitive extension, such as `.jpg`, `.JPG`, & `.jpG`).
|
||||
# By default, find(1) uses glob pathname pattern matching. To avoid shell
|
||||
# interpretation, the glob either must be expanded or the string quoted.
|
||||
#
|
||||
# Period is optional; it's implied unless a path is provided. find(1) works
|
||||
# recursively unless otherwise directed (IE: `-maxdepth [N]`).
|
||||
find . -iname '*.jpg'
|
||||
|
||||
# Find directories.
|
||||
|
Loading…
Reference in New Issue
Block a user