Skip to content

Instantly share code, notes, and snippets.

@ShannonScott
Last active August 2, 2019 16:24
Show Gist options
  • Save ShannonScott/25b63257a7449347eaeade42a43c37fa to your computer and use it in GitHub Desktop.
Save ShannonScott/25b63257a7449347eaeade42a43c37fa to your computer and use it in GitHub Desktop.
[Disk Usage] Sorted list of the total size of all children under the current directory. #tags: linux, mac, bash

Sorted list of the total size of all children under the current directory

Linux

alias ds='du -sh * | sort -h'

Mac

You must first (IIRC) install GNU gsort (via homebrew).

alias ds='du -sh * | gsort -h'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment