Skip to content

Instantly share code, notes, and snippets.

@olimortimer
Created May 29, 2015 08:37
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 olimortimer/75361ce5959045fd1f5f to your computer and use it in GitHub Desktop.
Save olimortimer/75361ce5959045fd1f5f to your computer and use it in GitHub Desktop.
Shell: Find unique file types
# Find all file types recursively within a directory
find . -type f | perl -ne 'print $1 if m/\.([^.\/]+)$/' | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment