vi test.sh
while true; doecho `date "+%Y-%m-%d %H:%M:%S"`", "$(top -bn1 | grep "Cpu(s)" | awk '{print $1$2$3}') >> cpu_log.txtsleep 1
done
top -bn1 | grep "Cpu(s)" 表示打印top命令的输出结果。
sleep 1 表示睡眠1秒。
后台启动脚本test.sh
chmod +x test.sh
nohup ./test.sh > /dev/null 2>&1 &