Skip to content

Instantly share code, notes, and snippets.

@magnetikonline
Last active December 12, 2015 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magnetikonline/4749291 to your computer and use it in GitHub Desktop.
Save magnetikonline/4749291 to your computer and use it in GitHub Desktop.
Find and list all file types recursively from the current directory with file counts.
find . -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