Skip to content

Instantly share code, notes, and snippets.

@thiago-vieira
Last active August 29, 2015 13:58
Show Gist options
  • Save thiago-vieira/10073225 to your computer and use it in GitHub Desktop.
Save thiago-vieira/10073225 to your computer and use it in GitHub Desktop.
Finding all distinct file extensions in a folder hierarchy
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