Skip to content

Instantly share code, notes, and snippets.

@mcandre
Last active June 21, 2024 04:22
Show Gist options
  • Save mcandre/ebbdf2e445be0d810559 to your computer and use it in GitHub Desktop.
Save mcandre/ebbdf2e445be0d810559 to your computer and use it in GitHub Desktop.
Sort file and directories recursively by size

Directories:

$ du -h -d 1 <some-top-level-directory> | sort -h

Mac users can

$ brew install coreutils
$ du -h -d 1 <some-top-level-directory> | gsort -h

Files:

$ ls -lSh <some-top-level-directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment