1
0
This commit is contained in:
2024-02-05 23:28:28 +01:00
parent 16253c1cbe
commit b9508955be
22 changed files with 488 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# 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}'
}