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地址。