Skip to content

Instantly share code, notes, and snippets.

@jl2
Created August 29, 2011 04:45
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 jl2/1177784 to your computer and use it in GitHub Desktop.
Save jl2/1177784 to your computer and use it in GitHub Desktop.
"One liner" to show how disk space is being used in the current directory.
#!/usr/bin/zsh
ls -Q -d . | xargs du -b -- | \
sort -n |\
perl -e 'while (<>) { @p = split; $sz = shift @p;\
printf("%3.2f MB \t@p\n",$sz/(1024*1024)); }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment