Created
March 19, 2018 14:09
-
-
Save dasginganinja/91f7f91c1890eee1e058dc3e2e278255 to your computer and use it in GitHub Desktop.
List all file extensions in the current directory
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 . -type f | sed -n 's/..*\.//p' | sort | uniq -c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment