1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ps コマンドの総和

Last updated at Posted at 2012-12-26

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 を使わないと動かないかと思われます。多分。

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?