Created
December 9, 2020 21:54
-
-
Save ymollard/53b48633e7e7cadb394cec1c79ae9bbe to your computer and use it in GitHub Desktop.
Count files by 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
find -type f | rev | cut -d. -f 1 | rev | sort | uniq -c | sort -n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment