Skip to content

Instantly share code, notes, and snippets.

@zsim0n
Created February 5, 2015 08:32
Show Gist options
  • Save zsim0n/bfc282d0bc66bda6e45b to your computer and use it in GitHub Desktop.
Save zsim0n/bfc282d0bc66bda6e45b to your computer and use it in GitHub Desktop.
Count number of files in sub-folders
find . -maxdepth 1 -type d | while read -r dir; do printf "%s:\t" "$dir"; find "$dir" -type f | wc -l; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment