linux脚本实现复制,Shell脚本实现复制文件到多台服务器的代码分享
在多機集群環境中,經常面臨修改配置文件后拷貝到多臺服務器的情況,傳統的執行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
總結
以上是生活随笔為你收集整理的linux脚本实现复制,Shell脚本实现复制文件到多台服务器的代码分享的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: linux 4.4内核是什么,Linux
- 下一篇: 数据包过滤 系统 linux,Ubunt