Skip to content

Instantly share code, notes, and snippets.

@snown
Created February 10, 2014 22:00
Show Gist options
  • Save snown/8925101 to your computer and use it in GitHub Desktop.
Save snown/8925101 to your computer and use it in GitHub Desktop.
A quick (and possibly inefficient) shell script to output the `du` command sorted by human readable file size.
#!/usr/bin/env bash
du -sk "$@" | sort -nr | cut -f2 | sed 's/.*/\"&\"/' | tr "\\n" " " | xargs du -sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment