dotfiles/conf.d/zim/modules/debian/functions/apt-list-packages
2021-02-19 21:34:24 +01:00

7 lines
202 B
Plaintext

# List packages by size
function apt-list-packages() {
dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | \
grep -v deinstall | \
sort -n | \
awk '{print $1" "$2}'
}