阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

拷贝文件到多台服务器的Shell脚本

148次阅读
没有评论

共计 855 个字符,预计需要花费 3 分钟才能阅读完成。

在多机集群环境中,经常面临修改配置文件后拷贝到多台服务器的情况,传统的执行 scp 比较麻烦,所以写了以下 shell 脚本,可以将指定文件拷贝到多台机器。

使用方法请参见 HELP 部分代码。

#!/bin/bash
 help()
 {
    cat << HELP
        ————–HELP————————
        This shell script can copy file to many computers.
        Useage:
                copytoall filename(full path form /home) targetpathfrom/  username ip1 ip2 ip3….
        Example:
                copytoall /home/casliyang/Hadoop-2.2.0/etc/hadoop/core-site.xml /home/casliyang/hadoop-2.2.0/etc/hadoop/ casliyang 192.168.0.5 192.168.0.6 192.168.0.7 192.168.0.8
        ——————————————
 HELP
    exit 0
 }

 currentdate=$(date +%Y-%m)

 echo  $currentdate ” execute copytoall”

 if [$1 = “-h”] ; then
        help
        exit 0
 fi

 file=$1
 shift
 targetpath=$1
 shift
 user=$1
 shift
 tempip=0

 if [-f $file] ; then
        while [$# -gt 0] ; do
                tempip=$1
                shift
                scp $file ${user}@${tempip}:${targetpath}
        done

else

        echo “wrong file!”

        exit 0
 fi

正文完
星哥说事-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-20发表,共计855字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中