手机版
你好,游客 登录 注册
背景:
阅读新闻

shell实现scp批量下发文件

[日期:2013-11-15] 来源:Linux社区  作者:lansgg [字体: ]

本文系统CentOS6.0

Expect是Unix系统中用来进行自动化控制和测试的软件工具,由Don Libes制作,作为Tcl脚本语言的一个扩展,应用在交互式软件中如telnet,ftp,Passwd,fsck,rlogin,tip,ssh等等。该工具利用Unix伪终端包装其子进程,允许任意程序通过终端接入进行自动化控制;

1、安装
1 yum install expect expect-devel -y

2、编写Script
#!/usr/bin/expect
if {$argc < 2} {
        send_user "usage: $argv0 src_file username ip dest_file password\n"
exit
}
set src_file [lindex $argv 0]
set username [lindex $argv 1]
set host_ip [lindex $argv 2]
set dest_file [lindex $argv 3]
set password [lindex $argv 4]
spawn scp  -r $src_file $username@$host_ip:$dest_file
expect {
        "(yes/no)?"
                {
                        send "yes\n"
                        expect "*assword:" {send "$password\n"}
                }
        "*assword:"
                {
                        send "$password\n"
                }
}
expect "100%"
expect eof

3、用法实例:
[root@master ~]# ./allscp.sh install.log root 192.168.100.145 /tmp/ 123456

shell实现scp批量下发文件
你也可以使用其他帐号;
上面实现了对单台机器复制;
4、批量服务器复制
#!/bin/bash
               
  src_file=$1
  username=$2
  host_list=$3
  dest_file=$4
  password=$5
  cat $host_list | while read line
  do
      host_ip=`echo $line | awk '{print $1}'`
      ./allscp.sh $src_file $username $host_ip $dest_file $password
  done

用法实例:

shell实现scp批量下发文件

希望大家有更好的介意~

推荐阅读

批量scp脚本——从多台机器拷贝文件 http://www.linuxidc.com/Linux/2013-06/86034.htm

Linux scp 和 SSH 命令 http://www.linuxidc.com/Linux/2013-03/80645.htm

Linux系统常用的cpio命令及scp命令 http://www.linuxidc.com/Linux/2013-01/77719.htm

Linux cp scp命令使用 http://www.linuxidc.com/Linux/2012-12/76840.htm

Linux服务器 scp 不需要密码配置 http://www.linuxidc.com/Linux/2012-12/75886.htm

linux
相关资讯       SCP  shell scp 
本文评论   查看全部评论 (0)
表情: 表情 姓名: 字数

       

评论声明
  • 尊重网上道德,遵守中华人民共和国的各项有关法律法规
  • 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
  • 本站管理人员有权保留或删除其管辖留言中的任意内容
  • 本站有权在网站内转载或引用您的评论
  • 参与本评论即表明您已经阅读并接受上述条款