首页 > 代码库 > shell 脚本远程复制文件

shell 脚本远程复制文件

!/bin/bash
#vim ip.txt server ip
ip_array=$(cat /tmp/ip.txt)
for ip in ${ip_array[*]}
do
scp -P6122 /tmp/test.sh  root@$ip:/tmp/
done


本文出自 “汜水流年_” 博客,请务必保留此出处http://timefiles.blog.51cto.com/8475652/1884167

shell 脚本远程复制文件