Created
July 13, 2019 23:14
-
-
Save jms1989/f239f4ea9a5ebdfbf62c8d8b73ca03d1 to your computer and use it in GitHub Desktop.
count files
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
#!/bin/bash | |
du -a "$1" | cut -d/ -f2 | sort | uniq -c | sort -n | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment