Created
September 12, 2017 03:07
-
-
Save raghur/71809c7e584d826eb5a49baae09cf5a1 to your computer and use it in GitHub Desktop.
find top 10 most space consuming folders inside a folder.
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 -maxdepth 1 -path './*' -type 'd' -print0 |xargs -0 du -hs |sort -hr |head -10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment