检测进程使用cpu时间超过5分钟,kill进程

#!/bin/bash

for PID in `ps -A |egrep "aaa|bbb|ccc"|awk '{split($3,tab,/:/); if(tab[2]+tab[1]*60>=5) {print $1}}'`
do
echo $PID
kill -9 $PID

done
~

posted @ 2022-09-09 15:38  GaoYanbing  阅读(49)  评论(0编辑  收藏  举报