21
23

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.

MacでChromeが消費しているメモリ量を表示するワンライナー

Posted at

Google Chromeはマルチプロセスなので、アプリ全体として消費しているメモリ量を知るには各プロセスのメモリ使用量を合計する必要がある。

ワンライナー

$ ps aux | grep -i chrome | tail -n +2 | awk -F' ' '{sum += $6} END {print sum/1000 " MB"}'
5505.85 MB
21
23
0

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
21
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?