如何在运行时监视shell脚本的内存使用情况?

时间:2013-07-29 06:56:50

标签: shell memory monitoring

我喜欢这样的shell脚本:

while true;do
    curl -s example.com | egrep -o 'sth'
    sleep 60
done

如何在运行时获取流程bashcurl以及egrepsleep的总内存使用量?

1 个答案:

答案 0 :(得分:0)

你可以使用ps命令:

 ps aux | grep <scriptName>
 ps aux | grep "curl -s example"
 ps aux | grep "egrap -s 'sth'"
 ps aux | grep "sleep 60"

第3和第4列是cpu和mem(你可以使用awk获取它们)