2

我喜欢这样的 shell 脚本:

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

如何在运行时获取进程bashcurlegrep的总内存使用量sleep

4

1 回答 1

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 获取它们)

于 2013-07-29T06:59:32.517 回答