ps コマンドの出力の、メモリー使用量の総和
> ps awwux --forest | awk '{if ($6 != "RSS") print $6}' | paste -sd+ | bc
138780
> ps awwux --forest | awk '{if ($5 != "VSZ") print $5}' | paste -sd+ | bc
4140544
注意
2019/06/11 今頃追記
Mac OS10.x の場合は paste
が Gnu CoreUtils のものではないので、brew install coreutils
でインストールした paste
を使わないと動かないかと思われます。多分。