Skip to content

Instantly share code, notes, and snippets.

@maz-1
Last active August 28, 2018 12:20
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 maz-1/11cf5053cb083c0b17f8746abd842493 to your computer and use it in GitHub Desktop.
Save maz-1/11cf5053cb083c0b17f8746abd842493 to your computer and use it in GitHub Desktop.
#!/bin/sh
LANG=C pacman -Qi | grep 'Name\|Size\|Description' | cut -d: -f2 | \
paste - - - | awk -F'\t' 'BEGIN{ s["MiB"]=1024; s["KiB"]=1;} {split($3, a, " "); print a[1] * s[a[2]], "KiB", $1}' | sort -n
LANG=C pacman -Qidt | grep 'Name\|Size\|Description' | cut -d: -f2 | \
paste - - - | awk -F'\t' 'BEGIN{ s["MiB"]=1024; s["KiB"]=1;} {split($3, a, " "); print a[1] * s[a[2]], "KiB", $1}' | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment