Created
July 1, 2017 08:27
-
-
Save petitchevalroux/695c6dde420557caddbafa595761b734 to your computer and use it in GitHub Desktop.
Sort directory by files count
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
find . -xdev -type f | cut -d "/" -f 2 | sort | uniq -c | sort -n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment