Last active
August 29, 2015 14:11
-
-
Save jonalvarezz/af1a3e84b8c3899b4571 to your computer and use it in GitHub Desktop.
Get top 5 directories in terms of space used
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
# From: http://stackoverflow.com/questions/23393284/how-to-check-which-directory-is-occupying-more-space-on-a-unix-machine | |
du -k -d1 /path/to/directory | sort -rn | head -5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment