我喜欢这样的shell脚本:
while true;do
curl -s example.com | egrep -o 'sth'
sleep 60
done
如何在运行时获取流程bash
和curl
以及egrep
和sleep
的总内存使用量?
答案 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获取它们)