1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-28 10:07:12 -07:00
rc/sh/pacbm

21 lines
479 B
Bash
Executable File

#!/usr/bin/env sh
# YES_ZSH
# YES_BASH
# YES_DASH
pacbm() { ### @-
### list installed pacman packages by their filesize, and the sum, ascending. requires `expac`.
###
### ```
### $ pacbm | head -n -1 | tail -2
### 204.78M clang
### 235.44M linux-firmware
### ```
expac -s '%m %n' | awk '
{t+=$1;printf("%8.2fM %s\n",$1/(1024*1024),$2)}
END{printf("%8.2fM\n",t/(1024*1024))}
' | sort -n
}
[ "${SOURCING:-0}" -gt 0 ] || pacbm "$@"