期望参数处理
我想创建一个期望脚本,通过 telnet 连接到服务器并进行一些授权。不过,我在使用脚本参数时遇到问题。基于 man,我预计这会起作用:
#!/usr/bin/expect -f
spawn telnet $argv1 5038
...
不幸的是我回来了 can't read "argv1": no such variable
。如何才能做到这一点?
I'd like to create an expect script that connects to the server via telnet and does some authorisation. I have a problem with using script parameters though. Based on man I expected this to work:
#!/usr/bin/expect -f
spawn telnet $argv1 5038
...
Unfortunately I get back can't read "argv1": no such variable
. How can make this work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
命令行参数作为变量 argv 中的列表提供,您可以使用 lindex 从该列表中获取元素,因此如果第一个参数是 telnet 到的主机,请执行以下操作:
请参阅中的 Shell 提供的变量 Shell 和 lindex "http://home.comcast.net/~brian199/tcl_tk_ref_guide.html#Lists" rel="nofollow noreferrer">列表
Commmand line arguments are provided as a list in variable argv, you can use lindex to get an element from this list, so if the first argument is the host to telnet to, do:
See Shell Provided Variables in Shells and lindex in Lists
$argv
是一个包含命令行参数的 Tcl 列表,索引从 0 开始。您想要:$argv
is a Tcl list holding the command line parameters, indexed beginning from 0. You want:当我尝试在过程中使用 $argv0 时,我遇到了类似的错误,
无法读取“argv0”:没有这样的变量
。解决方案是使用$::argv0
从全局命名空间显式访问它。I got a similar error,
can't read "argv0": no such variable
, when I tried to use $argv0 in a proc. The solution was to explicitly access it from the global namespace by using$::argv0
.