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 facelordgists/d2a0c85795465596020131ba497ab229 to your computer and use it in GitHub Desktop.
Save facelordgists/d2a0c85795465596020131ba497ab229 to your computer and use it in GitHub Desktop.
# Count of files in each sub-directory
find . -maxdepth 1 -mindepth 1 -type d -exec sh -c 'echo "$(find "{}" -type f | wc -l)" {}' \; | sort -nr
## Output example
# 1128 ./wordpress-seo
# 676 ./wp-ses
# 618 ./css-javascript-toolbox
# 423 ./gravityforms
# 394 ./wp-usertrack
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment