您现在的位置是:网站首页> 编程资料编程资料
Shell脚本实现复制文件到多台服务器的代码分享_linux shell_
2023-05-26
321人已围观
简介 Shell脚本实现复制文件到多台服务器的代码分享_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
相关内容
- Shell脚本实现的阳历转农历代码分享_linux shell_
- shell脚本编程之case语句学习笔记_linux shell_
- shell脚本编程之循环语句学习笔记_linux shell_
- shell脚本编程之if语句学习笔记_linux shell_
- 监控网站是否可以正常打开的Shell脚本分享_linux shell_
- CentOS 6.3下给PHP添加mssql扩展模块教程_linux shell_
- 3个备份系统文件并邮件发送的Shell脚本分享_linux shell_
- Shell正则表达式之grep、sed、awk实操笔记_linux shell_
- Linux下实现SSH免密码登录和实现秘钥的管理、分发、部署SHELL脚本分享_linux shell_
- 一个监控LINUX目录和文件变化的Shell脚本分享_linux shell_
