Skip to content

Instantly share code, notes, and snippets.

@ctrlouis
Created December 21, 2022 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ctrlouis/7f3dfdf7f3486592edd1d23db12d77a7 to your computer and use it in GitHub Desktop.
Save ctrlouis/7f3dfdf7f3486592edd1d23db12d77a7 to your computer and use it in GitHub Desktop.
Sort all directories based on their size
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