Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dasginganinja/91f7f91c1890eee1e058dc3e2e278255 to your computer and use it in GitHub Desktop.
Save dasginganinja/91f7f91c1890eee1e058dc3e2e278255 to your computer and use it in GitHub Desktop.
List all file extensions in the current directory
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