셸 스크립트는 여러 서버에 파일을 복사하여 코드를 공유합니다.

1294 단어
다중 기기 집단 환경에서 설정 파일을 수정한 후 여러 서버로 복사하는 경우가 많기 때문에 전통적인 scp 실행은 비교적 번거롭기 때문에 아래의 셸 스크립트를 써서 지정한 파일을 여러 대의 기기로 복사할 수 있다.
사용 방법은 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

좋은 웹페이지 즐겨찾기