主頁 > 知識庫 > Shell腳本實現(xiàn)復制文件到多臺服務器的代碼分享

Shell腳本實現(xiàn)復制文件到多臺服務器的代碼分享

熱門標簽:陜西電銷卡外呼系統(tǒng)怎么安裝 excel地址地圖標注 東莞電銷機器人價格一覽表 杭州機器人外呼系統(tǒng) 旅游地圖標注大全 佛山高德地圖標注中心 地圖標注超出范圍怎么辦 百度地圖的地圖標注 百度地圖標注圖標更換

在多機集群環(huán)境中,經(jīng)常面臨修改配置文件后拷貝到多臺服務器的情況,傳統(tǒng)的執(zhí)行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

標簽:雅安 南充 隨州 朝陽 青島 延邊 西藏 通遼

巨人網(wǎng)絡通訊聲明:本文標題《Shell腳本實現(xiàn)復制文件到多臺服務器的代碼分享》,本文關(guān)鍵詞  Shell,腳本,實現(xiàn),復制,文件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Shell腳本實現(xiàn)復制文件到多臺服務器的代碼分享》相關(guān)的同類信息!
  • 本頁收集關(guān)于Shell腳本實現(xiàn)復制文件到多臺服務器的代碼分享的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章