Skip to content

Instantly share code, notes, and snippets.

@dhcole
Created September 10, 2014 22:24
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 dhcole/e62d831e009b827fca07 to your computer and use it in GitHub Desktop.
Save dhcole/e62d831e009b827fca07 to your computer and use it in GitHub Desktop.
List files in a directory by type (audit an archived website)
find . -type f | sed 's/^.*\(\.[a-zA-Z0-9][a-zA-Z0-9][a-zA-Z0-9]\).*$/\1/' | sort | uniq -c > ../files.dat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment