1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-30 19:07:11 -07:00
rc/sh/psbm

6 lines
143 B
Plaintext
Raw Normal View History

2013-06-28 05:22:14 -07:00
#!/bin/sh
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