Skip to content

Instantly share code, notes, and snippets.

@anthonywong
Created September 24, 2015 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthonywong/7783cc6bdedb4e9795a1 to your computer and use it in GitHub Desktop.
Save anthonywong/7783cc6bdedb4e9795a1 to your computer and use it in GitHub Desktop.
Output installed packages order by size
for package in $(dpkg -l | grep ^ii| awk '{ print $2 }'); do size=$(dpkg -s $package | grep Installed-Size | awk '{ print $2 }'); echo $package $size; done | sort -nr -k2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment