网上搜了很多关于expect交互的说明,但都不详,只简单注明用法..
现整理归档下:
1.expect简述:
Expect 作为基于 Tcl 的高级语言,增加了一些特殊的语法,此外,Expect 已经以模块的方式移植到了 Perl 和 Python 语言中,因此用户同样可以在 Perl 和 Python 脚本中利用 Expect 强大的交互功能。
Send,expect 和 spwan 是 Expect 语言最基本的命令。其中,send 命令会发送字符串给指定进程(process);
expect 命令会等待接受该进程返回的结果并且会根据返回的字符串来决定下一步的操作;
而 spwan 命令可以发起一个进程的运行。
send命令接收一个字符串作为参数发送给指定进程。如 send "hello world\n" send 会送出字符串“Hello world”( 不带引号 )。如果 Expect 早已经开始与某一个程序进行交互,那么这个字符串将被发送给该程序;一般是发送到标准输出的, expect 命令则等待一个响应,通常是来自于 Expect 正在与之交互的进程,或者来自于标准输入设备;它会等待一个指定的字符串或者满足给定的正则表达式的任何字符串。
2.expect命令执行选项:
1) -c 从命令行执行expect脚本
#expect -c 'expect "\n"' {send "pressed enter\n"} 执行等待输入换行符\n按回车后会打印出presssed enter
2) -i 选项交互执行脚本
#expect -i arg1 arg2 arg3
expect1.1>set argv
arg1 arg2 arg3
expect1.2>
正常情况不加-i执行,会把arg1当作为脚本文件名,-i选项可以让脚本把多个参数当一个连续的列表.
3) -d 调试脚本信息
#expect -d 脚本名
4) 读入命令行参数
cat print_cmdline_args.exp
- #!/usr/bin/expect
- puts 'agrv0 : [ lindex $argv 0]';puts 'argv1 : [lindex $argv1]';
- 读入第一个和第二个参数
#expect print_cmdline_args.exp aa bb 执行此脚本传递aa,bb参数
3.expect 语法
1) expect partlist1 action1 partlist2 action2
- #!/usr/bin/expect
- pwd=12345
- timeout=300s 默认10s
- expect {
- -re "password:" {send "$pwd\n"}
- -re "yes\no:" {send "yes\n"}
- }
- expect一直等到当前进程的输出和以上的某一个模式相匹配(如:返回要求输入的密码)或等到timeout超时,或等到遇到了文件的结束为止。
每一个partlist都由一个模式一列表组成,如果有一个模式匹配成功,相应的action就会执行,执行结果从expect返回。
2)被精确匹配的字符串(或当超时发生时,已经读取来进行匹配的字符串)被存贮在变量expect_match里。如果partlist是eof或timeout则文件发生结束或超时时才执行相应的action.
- expect "*welcome*" break
- "*busy*" {print busy;continue} 支持分号分隔多个语句
- "*failed*" abort
- timeout abort
- 注:abort在脚本的别处有定义:
- exec sleep 4 使程序暂停4s
- spawn ....
3)修改密码样例:
- spawn passwd [index $argv 1] 以用户名作为参数启动程序
- set passwd [index $argv 2] 设置密码变量
- expect "*passwd:" 返回匹配到含有passwd字符,没有后继的action,则继续执行下面的语句
- send "$passwd" 把密码发送给当前进程
- expect "*passwd:"
- send "$passwd"
- 两次密码确认。
- expect eof 作用是在password 的输出中搜索文件结束符.必须
4)更加完善的匹配考虑:
- spawn passwd [ index $argv 1 ]
- expect eof {exit 1}
- timeout {exit 2}
- "*No such user.*" {exit 3}
- "*New password:"
- send "[index $argv 2]"
- expect eof {exit 4}
- timeout {exit 2}
- "*Retype new password:"
- send "[index $argv 3]"
- expect timeout {exit 2}
- "*Missmatch*" {exit 6}
- "*Password unchanged*" {exit 7}
- 此脚本退出时用数字表示所发生的情况。
- 如0表示password正常运行,1表示非预期死亡,2表示锁定.....
- expect返回字符串和数学是一样的。
5)伪终端:提供了终端语义以便程序认为他们正在和真正的终端进行I/O操作。
- for {} {} {
- spawn ...
- expect "...." break
- ... "...."
- close 关闭和伪终端的连接
- wait 等待退出
- }
- interact 进入交互终端不退出
6)ftp取文件样例:
- spawn ftp [index $argv 1] 第一个参数主机名
- expect "*Name"
- send "anoymous"
- expect "*Password:*"
- send [exec whoami]
- expect "*ok*ftp>*"
- send "get [index $argv 2]" 下载所需的文件
- expect "*ftp>*"
7) 提到的内个命令:
expect_user 从标准输入中读取
send_user 命令发送字符串到标准输出,只是当执行expect开始时send的方式。(发送命令给当前用户)例:
- send_user "logging in as anoymous\n"
- send "anoymous\r"
- 发送操作说明型字符串
log_user 0 关闭标准输出
待续...
参考说明: