Merge pull request #159 from terminalforlife/master

Note find(1)'s recursivity & use of `.` for CWD
pull/161/head
Igor Chubin 3 years ago committed by GitHub
commit 876cb68adb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save