Created
August 22, 2019 18:13
-
-
Save facelordgists/d2a0c85795465596020131ba497ab229 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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