Created
October 18, 2024 19:36
-
-
Save gabmontes/f66ebed4743c144a6b229536c5b9c231 to your computer and use it in GitHub Desktop.
List the extensions of all files tracked in the repository
This file contains hidden or 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
#!/bin/bash | |
git ls-tree -r master --name-only | awk -F. '!/^\./ && NF>1 {print $NF}' | sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment