shell脚本的分发,测试,查看
#!/bin/bash for i in {2..64} do #远端复制文件或目录 rcp /test/cpuburn-in 10.1.1.$i:/test/ done #!/bin/bash for ((i=1;i<=32;i++)) do #remote shell提供用户环境,也就是Shell,以便指令能够在指定的远端主机上执行。 rsh 10.1.1.$i “。。。“ done #!/bin/sh for((i=1;i<=22;i++)) do rsh 10.1.1.$i "...." done 来源: https://www.cnblogs.com/huhuxixi/p/11656400.html