Skip to content

Instantly share code, notes, and snippets.

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 DavidMetcalfe/c533505b24224566c15fa05f97eb0377 to your computer and use it in GitHub Desktop.
Save DavidMetcalfe/c533505b24224566c15fa05f97eb0377 to your computer and use it in GitHub Desktop.
Prints the file count per directory for the current directory level
# Credit for script to Sebastian Piskorski on Stack Overflow:
# https://stackoverflow.com/a/39622947/563231
du -a | cut -d/ -f2 | sort | uniq -c | sort -nr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment