Last active
March 16, 2023 05:44
-
-
Save joostvanveen/542e54cf2081765453f95136470e2c83 to your computer and use it in GitHub Desktop.
Get folder sizes on command line, including --max-depth, sorted by folder size desc
This file contains 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
# Get available disk space | |
df -h | |
# Get the top 10 biggest folders in the current directory | |
du -h --max-depth=1 | sort -rh | head -10 | |
# Get the top 10 biggest folders in the current directory and their first child directories | |
du -h --max-depth=2 | sort -rh | head -10 | |
# Get sizes of all folders in the current directory | |
du -h --max-depth=2 | sort -rh | |
# On Mac OSX max depth 1 | |
du -hd1 | sort -rh | head -10 | |
# On Mac OSX max depth 2 | |
du -hd2 | sort -rh | head -10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, John