期望参数处理

发布于 2024-08-10 01:32:10 字数 229 浏览 4 评论 0原文

我想创建一个期望脚本,通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

北方的韩爷 2024-08-17 01:32:10

命令行参数作为变量 argv 中的列表提供,您可以使用 lindex 从该列表中获取元素,因此如果第一个参数是 telnet 到的主机,请执行以下操作:

spawn telnet [lindex $argv 0] 5038

请参阅中的 Shell 提供的变量 Shelllindex "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:

spawn telnet [lindex $argv 0] 5038

See Shell Provided Variables in Shells and lindex in Lists

有深☉意 2024-08-17 01:32:10

$argv 是一个包含命令行参数的 Tcl 列表,索引从 0 开始。您想要:

[lindex $argv 0]

$argv is a Tcl list holding the command line parameters, indexed beginning from 0. You want:

[lindex $argv 0]
我很OK 2024-08-17 01:32:10

当我尝试在过程中使用 $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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文