1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 17:53:23 -07:00
rc/sh/pacbm
2021-07-29 00:37:35 -07:00

12 lines
222 B
Bash
Executable File

#!/usr/bin/env sh
# YES_ZSH
pacbm() {
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 "$@"