💾 Archived View for mkl-wlod.srht.site › repo › tree › scripts › .local › bin › paclist.txt captured on 2024-02-05 at 09:48:30.

View Raw

More Information

⬅️ Previous capture (2022-06-04)

-=-=-=-=-=-=-

#!/bin/sh

pacman -Qi | awk -F: '$1~/^Name / { name=$2 } $1~/^Installed Size / { gsub(/ /, ""); size=$2; print size, name }' | sort -hr | column -t | less