Created
September 10, 2014 22:24
-
-
Save dhcole/e62d831e009b827fca07 to your computer and use it in GitHub Desktop.
List files in a directory by type (audit an archived website)
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 '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
Source: http://unix.stackexchange.com/questions/18506/recursive-statistics-on-file-types-in-directory