对于喜爱自动化的Linux系统管理员而言,一定是用过expect这个命令行工具。Expect 是由 Don Libes 基于 Tcl 语言开发的,并被广泛应用于交互式操作和自动化测试的场景之中,它尤其适用于需要对多台服务器执行相同操作的环境中,可以大幅度提高系统管理人员的工作效率。本文是thegeekstuff.com最近更新的一篇技术分享文章,其中详细讲述了如何通过不同的命令行选项来执行一个expect脚本,具体有什么用,大家可以自由发挥想象力。

本文假设您对expect的基本使用方法已经有一定的了解。

如果你是expect脚本语言的新手,可以首先从我们的expect的“hello world”样例(英文)开始。

1.用“-c”选项,从命令行执行expect脚本

expect可以让你使用“-c”选项,直接在命令行中执行它,如下所示:

$ expect -c ‘expect “\n” {send “pressed enter\n”}

pressed enter

$

如果你执行了上面的脚本,它会等待输入换行符(\n)。按“enter”键以后,它会打印出“pressed enter”这个消息,然后退出。

2.用“-i”选项交互地执行expect脚本

使用“-i”选项,可以通过来自于标准输入的读命令来交互地执行expect脚本。如下所示:

$ expect -i arg1 arg2 arg3

expect1.1》set argv

arg1 arg2 arg3

expect1.2》

正常情况下,当你执行上面的expect命令的时候(没有“-i”选项),它会把arg1当成脚本的文件名,所以“-i”选项可以让脚本把多个参数当成一个连续的列表。

当你执行带有“-c”选项的expect脚本的时候,这个选项是十分有用的。因为默认情况下,expect是交互地执行的。

3.执行expect脚本的时候,输出调试信息

当你用“-d”选项执行代码的时候,你可以输出诊断的信息。如下所示:

$ cat sample.exp

# !/usr/bin/expect -fexpect “\n”;send “pressed enter”;$ expect -d sample.expexpect version 5.43.0argv[0] = expect argv[1] = -d argv[2] = sample.expset argc 0set argv0 “sample.exp”set argv “”executing commands from command file sample.exp

expect: does “” (spawn_id exp0) match glob pattern “\n”? no

expect: does “\n” (spawn_id exp0) match glob pattern “\n”? yes

expect: set expect_out(0,string) “\n”

expect: set expect_out(spawn_id) “exp0”

expect: set expect_out(buffer) “\n”

send: sending “pressed enter” to { exp0 pressed enter}

4.用“-D”选项启动expect调试器

“-D”选项用于启动调试器,它只接受一个布尔值的参数。这个参数表示提示器必须马上启动,还是只是初始化调试器,以后再使用它。

$ expect -D 1 script

“-D”选项左边的选项会在调试器启动以前被处理。然后,在调试器启动以后,剩下的命令才会被执行。

$ expect -c ’set timeout 10‘ -D 1 -c ’set a 1‘

1: set a 1

dbg1.0》

5.行地执行expect脚本

通常,expect会在执行脚本之前,把整个脚本都读入到内存中。“-b”选项可以让expect一次只读取脚本中的一行。当你没有写完整个脚本的时候,这是十分有用的,expect可以开始执行这个不完整的脚本,并且,它可以避免把脚本写入到临时文件中。

$ expect -b [url=http://www.studio-fs.org/ho/index.html]    年賀状印刷 巻[/url]


6.expect不解释命令行参数

你可以使用标识符让expect不解释命令行参数。
 [url=http://www.sportingwomanquarterly.com/separately-takes-after-hand/index.html]    リニューアル ホテル[/url]

你可以像下面这样的读入命令行参数:

$ cat print_cmdline_args.exp

#!/usr/bin/expect [url=http://www.lotusheartoils.org/20110114002647/20110217002721773352.html]    不用品回収[/url]


puts ’argv0 : [lindex $argv 0]‘;

puts ’argv1 : [lindex $argv 1]‘;
 [url=http://www.newshelp.eu/bi/index.html]    データ復旧[/url]

当执行上面的脚本的时候,会跳过命令行选项,它们会被当成参数(而不是expect选项),如下所示:

$ expect print_cmdline_args.exp -d -c

argv0 : -d [url=http://www.colorful-box.com/counter-for-long-cylindrical-things-examination-well/index.html]    武蔵小杉 TOEIC[/url]


argv1 : -c