Skip to content

Instantly share code, notes, and snippets.

@Bear-03
Created July 25, 2021 16:00
Show Gist options
  • Save Bear-03/ca084f231b345cea7e0eb27cbe6f7f5a to your computer and use it in GitHub Desktop.
Save Bear-03/ca084f231b345cea7e0eb27cbe6f7f5a to your computer and use it in GitHub Desktop.
Command that litst all installed linux packages, sorted by installed size.
#!/bin/bash
dpkg-query -W --showformat='${Installed-Size;10}\t${Package}\n' | sort -k 1,1n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment