Skip to content

Instantly share code, notes, and snippets.

@gabmontes
Created October 18, 2024 19:36
Show Gist options
  • Save gabmontes/f66ebed4743c144a6b229536c5b9c231 to your computer and use it in GitHub Desktop.
Save gabmontes/f66ebed4743c144a6b229536c5b9c231 to your computer and use it in GitHub Desktop.
List the extensions of all files tracked in the repository
#!/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