1
0
chezmoi/home/dot_zim/modules/debian/functions/apt-list-packages

7 lines
202 B
Plaintext
Raw Normal View History

2024-02-05 22:28:28 +00:00
# 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}'
}