Skip to content

Instantly share code, notes, and snippets.

@kylemanna
Last active January 15, 2022 16:24
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 kylemanna/0b3e399f8d1c8650355ceae258cc5572 to your computer and use it in GitHub Desktop.
Save kylemanna/0b3e399f8d1c8650355ceae258cc5572 to your computer and use it in GitHub Desktop.
Arch Linux: List packages installed without a dependency sorted by size
#!/bin/bash
pacman -Qi | awk '/^Name/{name=$3} /^Required By/{req=$4} /^Installed Size/{print $4$5, name, req}' | grep None | sort -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment