我喜欢这样的 shell 脚本:
while true;do
curl -s example.com | egrep -o 'sth'
sleep 60
done
如何在运行时获取进程bash
和curl
和egrep
的总内存使用量sleep
?
我喜欢这样的 shell 脚本:
while true;do
curl -s example.com | egrep -o 'sth'
sleep 60
done
如何在运行时获取进程bash
和curl
和egrep
的总内存使用量sleep
?