Created
November 1, 2014 16:05
-
-
Save vijinho/a8e2838b5408548ba03c to your computer and use it in GitHub Desktop.
List file extensions in use in current directory tree
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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