Skip to content

Instantly share code, notes, and snippets.

@alex-cellcity
Forked from zbyhoo/gist:1450703
Created April 3, 2012 09:23
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 alex-cellcity/2290627 to your computer and use it in GitHub Desktop.
Save alex-cellcity/2290627 to your computer and use it in GitHub Desktop.
print sorted by size list of all files/folders in current directory in human readable form
du -s * | sort -nr | cut -f2- | xargs -I {} du -hs {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment