Skip to content

Instantly share code, notes, and snippets.

@mvrozanti
Created March 1, 2023 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mvrozanti/d71fb06f8ab2a2ad6bcad036196a970e to your computer and use it in GitHub Desktop.
Save mvrozanti/d71fb06f8ab2a2ad6bcad036196a970e to your computer and use it in GitHub Desktop.
List installed packages sorted by size on disk
pacman -Qi | awk '/^Name/{name=$3} /^Installed Size/{print name " : " $4 $5}' | sort -h -k 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment