1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 01:07:11 -07:00
rc/sh/pacbm

25 lines
548 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
2021-07-29 00:37:35 -07:00
# YES_ZSH
# YES_BASH
# YES_DASH
2021-09-23 06:48:05 -07:00
# YES_ASH
# TODO: does this work with busybox awk?
2021-07-29 00:37:35 -07:00
2021-07-30 17:57:08 -07:00
pacbm() { ### @-
2021-08-01 09:27:25 -07:00
### display and order installed pacman packages by their filesize ascending,
### and their sum. requires `expac`.
2021-07-30 17:57:08 -07:00
###
### ```
### $ pacbm | head -n -1 | tail -2
### 204.78M clang
### 235.44M linux-firmware
### ```
2021-07-29 00:37:35 -07:00
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
}
[ -n "${preload+-}" ] || pacbm "$@"