Created
March 6, 2014 13:37
-
-
Save Moinax/46e3471f15a2e9b2cbc7 to your computer and use it in GitHub Desktop.
Locate biggest directory on debian server
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
# List the 10 biggest directory in the current directory | |
sudo du -hsx * | sort -rh | head -10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment