1
0
chezmoi/home/dot_zim/modules/debian/functions/apt-list-packages
2024-02-05 23:28:28 +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}'
}