Created
December 21, 2022 13:35
-
-
Save ctrlouis/7f3dfdf7f3486592edd1d23db12d77a7 to your computer and use it in GitHub Desktop.
Sort all directories based on their size
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
du -sh -- * | sort -rh # Files and directories, or | |
du -sh -- */ | sort -rh # Directories only |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment