Colin Robinson

Bash

Use Bash to get the memory usage of applications like Chromium

It’s not always easy to tell how much memory Chromium/Chrome is using, because of the different threads it starts. Here are a couple snippets with explanations to get you started. Percent of memory use Code: ps -eo pmem,comm | grep chromium | cut -d ” ” -f 2 | paste -sd+ | bc | awk […]