使用shell 写一段循环监控CPU占用的脚本
时间: 2024-05-02 07:23:34 浏览: 93
好的,我的代码如下:
```shell
while true
do
# 获取CPU占用率
cpu=$(top -n 1 | awk '/Cpu\(s\)/{print $2}')
# 输出当前CPU占用率
echo "Current CPU usage: $cpu%"
# 等待1秒
sleep 1
done
```
这个脚本会不断循环监控CPU的占用率,并输出当前CPU占用率,每秒钟监控一次。
阅读全文