PROGRAM_NAME --程式名稱DELAY ---------每隔多久看一次CPU usageNUMBER --------總共看幾次
top -b -n NUMBER -d DELAY | tee top.log
cat top.log | grep CPU: | awk '{print $8}' | sed s/%//g
cat top.log | grep -v grep | grep PROGRAM_NAME | awk '{print $7}'| sed s/%//g
example:
假設要看hello程式, 一分鐘內每隔一秒的CPU使用率:
top -b -n 60 -d 1 | grep -v grep | grep hello | awk '{print $7}'| sed s/%//g
輸出結果:
09521222422331232320.....
沒有留言:
張貼留言