List installed packages by size


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. dpkg-query --show --showformat='${Package;-50}\t${Installed-Size}\n' | sort -k 2 -n | grep -v deinstall | awk '{printf "%.3f MB \t %s\n", $2/(1024), $1}' | tail -n 10

URL: http://www.ubuntizandoelplaneta.com/2010/11/truco-que-programa-ocupa-mas-espacio.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.