Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 239 Bytes

bash.md

File metadata and controls

8 lines (7 loc) · 239 Bytes

Back to Cheatsheets Index

bash Cheatsheet

Count number of files in a directory

Counts number of files with .JPG extension in directory and subfolders (recursive).

find . -name \*.JPG -not -path \*/\.\* | wc -l