Skip to content

Instantly share code, notes, and snippets.

@michaelkrupp
Created February 10, 2015 16:49
Show Gist options
  • Save michaelkrupp/a1073f63ff7fcc1114ad to your computer and use it in GitHub Desktop.
Save michaelkrupp/a1073f63ff7fcc1114ad to your computer and use it in GitHub Desktop.
treesize
du -k --max-depth=1 | sort -nr | awk '
BEGIN {
split("KB,MB,GB,TB", Units, ",");
}
{
u = 1;
while ($1 >= 1024) {
$1 = $1 / 1024;
u += 1
}
$1 = sprintf("%.1f %s", $1, Units[u]);
print $0;
}
'
du -achPxd1 |sort -rhk1
ncdu -xrq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment