1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 09:07:12 -07:00
rc/sh/psbm

24 lines
586 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
2021-10-04 17:06:45 -07:00
# YES_BB_AWK
2021-07-29 00:37:35 -07:00
psbm() { ### @-
2021-08-01 09:27:25 -07:00
### display and order processes by their memory usage ascending, and their sum.
###
### ```
### $ psbm | head -n -1 | tail -2
### 185.08M 1163 chromium
### 199.95M 1060 chromium
### ```
[ -z "$MSYSTEM" ] || { printf "%s\n" "$0: unsupported on MSYS2" >&2; return 1; }
2021-07-29 00:37:35 -07:00
ps axco rss,pid,command | awk '
NR>1&&$1>0{t+=$1;printf("%8.2fM %7d %s\n",$1/1024,$2,$3)}
END{printf("%8.2fM\n",t/1024)}
' | sort -n
}
[ -n "${preload+-}" ] || psbm "$@"