Skip to content

Instantly share code, notes, and snippets.

@teffalump
Last active August 29, 2015 14:03
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 teffalump/9897f05c7082dc18418d to your computer and use it in GitHub Desktop.
Save teffalump/9897f05c7082dc18418d to your computer and use it in GitHub Desktop.
Get arch pkg sizes
#!/usr/bin/zsh
#DEPRECATED
#get size of package(s) in arch (specify none for all)
pacman -Si "$@" | awk -F ": " '/^Name/ {name=$2} /^Installed Size/ {printf "%s %d KiB\n", name, $2}'
@teffalump
Copy link
Author

Shouldn't use this anymore.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment