Welcome 微信登录
编程资源 图片资源库 蚂蚁家优选

首页 / 操作系统 / Linux / shell实现scp批量下发文件

本文系统CentOS6.0Expect是Unix系统中用来进行自动化控制和测试的软件工具,由Don Libes制作,作为Tcl脚本语言的一个扩展,应用在交互式软件中如telnet,ftp,Passwd,fsck,rlogin,tip,ssh等等。该工具利用Unix伪终端包装其子进程,允许任意程序通过终端接入进行自动化控制;1、安装
1 yum install expect expect-devel -y2、编写Script
#!/usr/bin/expect
if {$argc < 2} {
        send_user "usage: $argv0 src_file username ip dest_file password "
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 "
                        expect "*assword:" {send "$password "}
                }
        "*assword:"
                {
                        send "$password "
                }
}
expect "100%"
expect eof3、用法实例:
[root@master ~]# ./allscp.sh install.log root 192.168.100.145 /tmp/ 123456
你也可以使用其他帐号;
上面实现了对单台机器复制;
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用法实例:希望大家有更好的介意~推荐阅读:批量scp脚本——从多台机器拷贝文件 http://www.linuxidc.com/Linux/2013-06/86034.htmLinux scp 和 SSH 命令 http://www.linuxidc.com/Linux/2013-03/80645.htmLinux系统常用的cpio命令及scp命令 http://www.linuxidc.com/Linux/2013-01/77719.htmLinux cp scp命令使用 http://www.linuxidc.com/Linux/2012-12/76840.htmLinux服务器 scp 不需要密码配置 http://www.linuxidc.com/Linux/2012-12/75886.htmLinux 操作系统-迁移与复制Shell脚本之awk文本编辑器语法相关资讯      SCP  shell scp 
  • scp实现Mac与Linux服务器之间文件  (06月15日)
  • ssh使用scp: /目录: Permission   (11/15/2015 20:17:51)
  • Linux传送文件至服务器  (01/29/2015 19:47:19)
  • 使用scp服务器实现Linux与Linux之  (04月09日)
  • Linux主机之间传输文件的几种方法  (05/04/2015 21:00:09)
  • Ubuntu下scp批量拷贝文件不需要输  (12/31/2014 19:55:13)
本文评论 查看全部评论 (0)
表情: 姓名: 字数