Skip to content

Instantly share code, notes, and snippets.

@shollingsworth
Created August 3, 2015 14:03
Show Gist options
  • Save shollingsworth/80eab8ec07ae9edffe97 to your computer and use it in GitHub Desktop.
Save shollingsworth/80eab8ec07ae9edffe97 to your computer and use it in GitHub Desktop.
find all file extension types in current directory
find -type f | while read i; do bn=$(basename ${i}); echo ${bn##*.}; done | tr 'A-Z' 'a-z' | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment