Skip to content

Instantly share code, notes, and snippets.

@knugie
Created February 5, 2016 21:02
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 knugie/22069e7f72c4ab42322d to your computer and use it in GitHub Desktop.
Save knugie/22069e7f72c4ab42322d to your computer and use it in GitHub Desktop.
List number of files in each directory
find -P . -type f | rev | cut -d/ -f2- | rev | cut -d/ -f1-2 | cut -d/ -f2- | sort | uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment