Created
September 18, 2018 18:51
-
-
Save t27/9f4eb874822f570b160ccee607eb9eb3 to your computer and use it in GitHub Desktop.
List the count of files in a folder by the extension
This file contains hidden or 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
#List files by extension | |
# from https://unix.stackexchange.com/a/18508/ | |
#find <folder> -type f | sed 's/.*\.//' | sort | uniq -c | |
find DEU/ -type f | sed 's/.*\.//' | sort | uniq -c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment