码迷,mamicode.com
首页 > 其他好文 > 详细

expect 使用

时间:2016-11-11 20:12:29      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:sel   rac   log   选择   堡垒机   password   bsp   html   com   

参考:http://www.cnblogs.com/iloveyoucc/archive/2012/05/11/2496433.html

 

 

自己的小例子:

  1. ssh 到堡垒机
  2. 选择跳转服务器
  3. ssh 到目标服务器
  4. cd 到目录

login_ssh.exp

 1 #!/usr/bin/expect
 2 set timeout 30
 3 spawn ssh  xxx@xxx
 4 expect "Password:"
 5 send "xxx\r"
 6 expect "Select server:"
 7 send "x\r"
 8 expect -re ".*xxx.*"
 9 spawn ssh xxx@xxx
10 expect -re ".*password:"
11 send "xxx\r"
12 expect -re ".*xxx.*"
13 send "cd /xxx\r"
14 interact

 

expect 使用

标签:sel   rac   log   选择   堡垒机   password   bsp   html   com   

原文地址:http://www.cnblogs.com/jellyabd/p/6055030.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!