我是 Expect 脚本的新手,我想知道任何可以从 Expect 脚本基础开始的链接。
- 命令的语法
- 如何运行和测试脚本。
获取《探索期望》一书。Expect 是Tcl的扩展,因此请阅读Tcl 教程。
关于如何使脚本可执行的快速教程:
$ cat > test.exp << END
#!/usr/bin/expect -f
send_user "hello world\n"
END
$ chmod a+x test.exp
$ ./test.exp
hello world
在开发和测试 Expect 脚本时,将
exp_internal 1
一开始。