mirror of
https://github.com/notwa/rc
synced 2025-02-05 07:43:22 -08:00
11 lines
230 B
Bash
Executable file
11 lines
230 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# YES_ZSH
|
|
|
|
psbm() {
|
|
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
|
|
}
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || psbm "$@"
|