Last active
November 1, 2023 10:08
List files/folders by size in descending order, limit 20
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
sudo du -hsx --exclude=/{proc,sys,dev,run} /*| sort -hr | head -n20 |
However if you also want to include hidden folders in the results, such as git folders, use this:
sudo du -ahd1 | sort -hr | head -n20
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works well when checking current directory:
sudo du -hxs ./* | sort -hr | head -n20