linux脚本后台记录top命令信息

做个命令适用记录:

#!/bin/bash


while true

do

       top -b -n 1 -d 1 > top.log

       sleep 1

done


实测好用!

你可能感兴趣的:(linux)