本文译至:http://www.thegeekstuff.com/2010/10/expect-examples/
Expect 脚本语言用于自动提交输入到交互程序。它相比其它脚本语言简单易学。使用expect脚本的系统管理员和开发人员可以轻松地自动化冗余任务。它的工作原理是等待特定字符串,并发送或响应相应的字符串。
以下三个expect命令用于任何自动化互动的过程。
下面的expect脚本等待具体字符串“hello”。 当它找到它时(在用户输入后),“world”字符串将作为应答发送。
#!/usr/bin/expect expect "hello" send "world"
默认情况下,等待的超时时间为10秒。 如果你不为expect命令输入任何东西,将在20秒内超时。 您也可以更改超时时间,如下所示。
#!/usr/bin/expect set timeout 10 expect "hello" send "world"
在Expect的帮助下,你可以自动化用户进程,并得到期望的输出。 例如,您可以使用Expect编写测试脚本来简化项目的测试用例。
下面的例子执行了额外的程序自动化。
#!/usr/bin/expect set timeout 20 spawn "./addition.pl" expect "Enter the number1 :" { send "12\r" } expect "Enter the number2 :" { send "23\r" } interact
执行上面的脚本,输出结果如下所示。
$ ./user_proc.exp spawn ./addition.pl Enter the number1 : 12 Enter the number2 : 23 Result : 35
如果你写的代码没有interact命令,在这种情况下,脚本会在发送字符串“23\r”后立即退出。 interact命令执行控制,处理addtion进程的作业,并生成预期的结果。
在字符串匹配成功时expect返回,但在此之前它将匹配的字符串存储在$expect_out(0,string)。之前所收到的字符串加上匹配的字符串存储在$expect_out(buffer)。下面的例子展示了这两个变量匹配的值。
#!/usr/bin/expect set timeout 20 spawn "./hello.pl" expect "hello" send "no match : <$expect_out(buffer)> \n" send "match : <$expect_out(0,string)>\n" interact
hello.pl程序只是打印两行,如下图所示。
#!/usr/bin/perl print "Perl program\n"; print "hello world\n";
如下所示执行。
$ ./match.exp spawn ./hello.pl Perl program hello world no match :match :
Expect可以让你从程序中传递密码给Linux登录账号,而不是在终端输入密码。在下面的程序中,su自动登录到需要的账户上。
#!/usr/bin/expect set timeout 20 set user [lindex $argv 0] set password [lindex $argv 1] spawn su $user expect "Password:" send "$password\r"; interact
如下所示执行上面的expect程序。
bala@localhost $ ./su.exp guest guest spawn su guest Password: guest@localhost $
运行上面的脚本后,从bala用户帐户登录到guest用户帐户。
下面给出的expect程序项目可自动从一台计算机ssh登录到另一台机器。
#!/usr/bin/expect set timeout 20 set ip [lindex $argv 0] set user [lindex $argv 1] set password [lindex $argv 2] spawn ssh "$user\@$ip" expect "Password:" send "$password\r"; interact
执行上面的expect程序如下所示。
guest@host1 $ ./ssh.exp 192.168.1.2 root password spawn ssh [email protected] Password: Last login: Sat Oct 9 04:11:35 2010 from host1.geetkstuff.com root@host2 #