通过在shell脚本中用expect实现远程scp文件-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 2090542
  • 博文数量: 195
  • 博客积分: 4378
  • 博客等级: 上校
  • 技术积分: 4046
  • 用 户 组: 普通用户
  • 注册时间: 2007-09-09 11:37
个人简介

白天和黑夜只交替没交换无法想像对方的世界

文章分类

全部博文(195)

文章存档

2014年(3)

2013年(20)

2012年(18)

2011年(107)

2010年(17)

2009年(5)

2008年(20)

2007年(5)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: python/ruby

2011-11-15 00:00:22

通过在shell脚本中用expect实现远程scp文件:
 
 
使用expect前,需要先安装两个rpm包:
# rpm -ihv centos/expect-5.43.0-5.1.i386.rpm
# rpm -ihv centos/expect-devel-5.43.0-5.1.i386.rpm

#!/usr/bin/expect -f
set password 密码
spawn scp 用户名@目标机器ip:拷贝文件的路径 存放本地文件的路径
set timeout 300
expect "用户名@目标机器ip's password:" //注意:这里的“用户名@目标机器ip” 跟上面的一致
set timeout 300
send "$password\r"
set timeout 300   //此处设置超时时间,单位为秒,如果,拷贝文件比较大并且多时,应该将这个值调大一些。
send "exit\r"
expect eof
附:scp参数
-r:拷贝目录
-c:允许压缩
一个完整的例子
  
expect_scp.exp
========================================================================
  1. #!/usr/bin/expect -f
  2. #author by kevin
  3. #date is 2011-11-14

  4. set password vcdog
  5. #download local host
  6. spawn scp -r root@192.168.1.107:/root/dba_tool/test /root/dba_tool/
  7. set timeout 3
  8. expect {
  9. "yes/no" {send "yes\r";exp_continue}
  10. }
  11. expect "root@192.168.1.107's password:"
  12. set timeout 3
  13. send "$password\r"
  14. set timeout 300
  15. send "exit\r"
  16. expect eof

  17. #upload remote host
  18. spawn scp -r /root/dba_tool/t.txt root@192.168.1.107:/root/dba_tool/
  19. set timeout 3
  20. expect {
  21. "yes/no" {send "yes\r";exp_continue}
  22. }
  23. expect "root@192.168.1.107's password:"
  24. set timeout 3
  25. send "$password\r"
  26. set timeout 300
  27. send "exit\r"
  28. expect eof

==========================================================================
测试验证:
# chmod x ./expect_scp.exp
# expect ./expect_scp.exp
spawn scp -r /root/dba_tool/
password:
test                                                                                              100%   12     0.0kb/s   00:00   
spawn scp -r /root/dba_tool/t.txt
password:
t.txt                                                                                             100%  254     0.3kb/s   00:00
本地服务器:(192.168.1.106)
[root@f-app-01 dba_tool]# ll /root/dba_tool/
total 64
-rw-r--r-- 1 root root   548 nov 14 23:46 expect_scp.exp
-rw-r--r-- 1 root root    12 nov 14 23:24 test
-rw-r--r-- 1 root root   254 nov 14 23:24 t.txt
远程服务器:(192.168.1.107)
[root@f-app-02 dba_tool]# ll /root/dba_tool/
total 60
-rw-r--r-- 1 root root    12 nov 14 22:24 test
-rw-r--r-- 1 root root   254 nov 14 22:47 t.txt
阅读(17855) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图