Tag Archives: sort

Listing debian packages sorted by size

0
Filed under Development
Tagged as , , , , , , , ,
dpkg-query --show --showformat='${Package;-50}\t${Installed-Size} ${Status}\n' | sort -k 2 -n |grep -v deinstall

This was the most useful thing I’ve found today.

found it here.