expect 使用

Posted jellyabd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了expect 使用相关的知识,希望对你有一定的参考价值。

参考: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 使用的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本引用expect

27 分发系统介绍 expect脚本远程登录 expect脚本远程执行命令 expect脚本传递参数

分发系统-expect讲解,expect脚本远程登录,expect脚本远程执行命令,expect脚本

七十分发系统介绍expect脚本远程登录expect脚本远程执行命令expect传递参数

printf打印不稳定[关闭]

使用 Perl Expect 与程序通信