1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 09:07:12 -07:00

utility to list packages by disk space

This commit is contained in:
Connor Olding 2013-11-03 21:42:16 -08:00
parent 587da2117b
commit 47b97bdd89

5
sh/pacbm Normal file
View File

@ -0,0 +1,5 @@
#!/bin/sh
expac -s '%m %n' | awk '
{t+=$1;printf("%8.2fM %s\n",$1/(1024*1024),$2)}
END{printf("%8.2fM\n",t/(1024*1024))}
' | sort -n