手机
当前位置:查字典教程网 >脚本专栏 >linuxshell >Shell脚本实现复制文件到多台服务器的代码分享
Shell脚本实现复制文件到多台服务器的代码分享
摘要:在多机集群环境中,经常面临修改配置文件后拷贝到多台服务器的情况,传统的执行scp比较麻烦,所以写了以下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

【Shell脚本实现复制文件到多台服务器的代码分享】相关文章:

expect自动检测并重启另外一台服务器上的程序代码

shell脚本实现ssh自动登录功能分享

shell脚本中使用iconv实现批量文件转码的代码分享

linux下采用shell脚本实现批量为指定文件夹下图片添加水印的方法

Shell脚本读取ini配置文件的实现代码2例

防止shell脚本重复执行的代码

Shell脚本实现的memcached进程监控

shell获取命令行参数示例分享

用shell脚本和c语言将大写字母转成小写的代码

shell脚本从SVN推送到多台服务器的代码

精品推荐
分类导航