Created
August 9, 2016 19:51
-
-
Save maxcampolo/25b537caa684d1a63d844162d9891467 to your computer and use it in GitHub Desktop.
Count number of files with a specified extension.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Recursive | |
find . -name "*.filetype" | wc -l | |
// Nonrecursive | |
ls -l *.filetype | wc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment