Skip to content

Instantly share code, notes, and snippets.

@fengye
Created January 31, 2017 09:24
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 fengye/632e7458b971ca3a6113fcd0f867affb to your computer and use it in GitHub Desktop.
Save fengye/632e7458b971ca3a6113fcd0f867affb to your computer and use it in GitHub Desktop.
#!/bin/bash
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