Skip to content

Instantly share code, notes, and snippets.

@ivey
Created September 7, 2008 16:15
Show Gist options
  • Save ivey/9282 to your computer and use it in GitHub Desktop.
Save ivey/9282 to your computer and use it in GitHub Desktop.
du -sk . * | perl -e '$sum=<>;
while (<>) {
($size, $inode)=split;
chop $size;
printf("%30s | %5d | %2.2f%%\n",$inode,$size,$size/$sum*1000);
}' | sort -rn -k 3 | head
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment