Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Linux 的新手,所以...我有一个练习要做:仅使用 ps、grep、awk、gawk 确定 SQL 使用的内存进程总量。我如何用 ps 确定任何进程使用了多少内存?ps 中的内存以百分比显示...非常感谢。
ps auwx | awk '/[s]ql/ {total += $4} END {print total}'
您可能想要$11 ~ /sql/寻找实际的(my)sql 进程,而不是任何参数中带有“sql”的任何命令。
$11 ~ /sql/