Skip to content

Instantly share code, notes, and snippets.

@t27
Created September 18, 2018 18:51
Show Gist options
  • Save t27/9f4eb874822f570b160ccee607eb9eb3 to your computer and use it in GitHub Desktop.
Save t27/9f4eb874822f570b160ccee607eb9eb3 to your computer and use it in GitHub Desktop.
List the count of files in a folder by the extension
#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