监控cpu高的进程shell

#!/bin/bash

while [ 1 ]
do
ps aux|awk '{if($3>10){print $3" => "$0}}'
sleep 0.5s
done

posted @ 2022-03-15 16:27  阿旭^_^  阅读(44)  评论(0编辑  收藏  举报