Skip to content

Instantly share code, notes, and snippets.

@jfernandz
Forked from tmhedberg/largepkg
Last active July 15, 2018 22:40
Show Gist options
  • Save jfernandz/47a208f964344d9f32391c725b9fadbb to your computer and use it in GitHub Desktop.
Save jfernandz/47a208f964344d9f32391c725b9fadbb to your computer and use it in GitHub Desktop.
List installed Arch Linux packages in descending order of size
#!/bin/bash
for pkg in `pacman -Qq`; do
size=`
LC_ALL=C pacman -Qi $pkg |
grep '^Installed Size' |
awk -F '[[:space:]]+:[[:space:]]+' '{print $2}'
`
echo "$size - $pkg"
done |
sort -hr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment