如何获得每个cpu百分比的输出

时间:2017-08-22 13:34:32

标签: linux

for i in  `cat servers.txt` ; do
   for k in `cat ip.txt` ; do
      cpu=`sshpass -f passfile ssh $i -p 8022 "sshpass -p admin ssh $k "top -n 1 | grep /system/bin/mediaserver | a
wk '{print $8*100}'""`
          echo " The cpu percentage of $k is $cpu" > file
   done
done

当我运行脚本以将输出保存在文件变量k中时,有两个IP地址,但在file中它只保存最后一个IP地址。我想在文件中输出两个IP地址。

0 个答案:

没有答案