Skip to content

Instantly share code, notes, and snippets.

@vijinho
Created November 1, 2014 16:05
Show Gist options
  • Save vijinho/a8e2838b5408548ba03c to your computer and use it in GitHub Desktop.
Save vijinho/a8e2838b5408548ba03c to your computer and use it in GitHub Desktop.
List file extensions in use in current directory tree
# find file extension used in project
find . -type f | cut -d '.' -f 3 | sort | uniq | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment