linux_长时间监控cpu负载脚本

发布时间:2024年01月15日
#!/bin/bash

output=./cpu.log


while true
do
        date >> $output
#        ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head >> $output
		top -b -d 1 -n 17280 | head >> $output
        sleep 1
done

文章来源:https://blog.csdn.net/weilaozongge/article/details/135518540
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。