Skip to content

Instantly share code, notes, and snippets.

@c0nspiracy
Created September 3, 2012 09:14
Show Gist options
  • Save c0nspiracy/3608052 to your computer and use it in GitHub Desktop.
Save c0nspiracy/3608052 to your computer and use it in GitHub Desktop.
List all file extensions in the current directory and below
find . -type f | awk -F . '{print $NF}' | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment