Skip to content

Instantly share code, notes, and snippets.

@IchHabRecht
Created August 21, 2013 20:30
Show Gist options
  • Save IchHabRecht/6299817 to your computer and use it in GitHub Desktop.
Save IchHabRecht/6299817 to your computer and use it in GitHub Desktop.
[BASH] Sort directories by size
du -k | sort -nr
du -m | sort -nr
du -B 1024 | sort -nr
du -B 1048576 | sort -nr
du -B 1073741824 | sort -nr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment