- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编辑:我通过引用 Exploring Expect 书找到了答案。不过,请不要犹豫,添加到我的答案或提出其他建议!当我被允许(从现在起 2 天)时,我会将其标记为已回答。
我环顾四周,不幸的是,我无法在此站点上找到太多关于使用 SSH 和 expect 的信息。我对 Expect 比较陌生,但我一直在用 Exploring Expect 书自学。
我的问题是:如何将一个衍生的 SSH 进程用于多个 tcl 程序?我现在的解决方法是在程序 1 结束时关闭 SSH 连接,并在程序 2 中重新生成一个新的 SSH 连接。
示例:(示例被简化了很多,仅包含演示我的问题的必要组件......我的整个程序现在已经超过 200 行)
;# Proc definition for procedure1
proc procedure1 {user host pw} {
spawn /usr/bin/ssh $user@$host
expect "Password:"
send "$pw\r"
expect "#" ;# This is my device's prompt
;# From here it does a bunch of stuff... sends commands to the SSH
;# session, captures output, builds arrays and lists, etc
send "exit" ;# Disconnects the SSH session
return $mylist ;# returns a list of numbers to be used in procedure 2
}
;# Proc definition for procedure2
proc procedure2 {resultofproc1 user host pw} {
spawn /usr/bin/ssh $user@$host
expect "Password:"
send "$pw\r"
expect "#" ;# This is my device's prompt
;# Proc 2 now continues on in the same device using the results (a
;# list) from proc1.
return
}
;# Procedure call for first procedure:
set resultofproc1 "[procedure1 $user $host $pw]"
;# Procedure call for second procedure:
procedure2 $resultofproc1 $user $host $pw
最佳答案
您可以使用global申报spawn_id
作为全局变量。根据期望的手册:
CAVEATS
...
Expect takes a rather liberal view of scoping. In particular, variables read by commands specific to the Expect program will be sought first from the local scope, and if not found, in the global scope. For example, this obviates the need to placeglobal timeout
in every procedure you write that usesexpect
. On the other hand, variables written are always in the local scope (unless aglobal
command has been issued). The most common problem this causes is whenspawn
is executed in a procedure. Outside the procedure,spawn_id
no longer exists, so the spawned process is no longer accessible simply because of scoping. Add aglobal spawn_id
to such a procedure.
...
您还可以利用 Tcl 的 upvar命令。例如:
[STEP 101] $ cat foo.exp
proc expect_prompt {} {
upvar spawn_id spawn_id
expect -re {bash-[.0-9]+[#$] $}
}
proc open_conn {} {
upvar spawn_id spawn_id
spawn bash --noprofile --norc
expect_prompt
}
proc close_conn {} {
upvar spawn_id spawn_id
send "exit\r"
expect eof
}
proc send_cmd { cmd } {
upvar spawn_id spawn_id
send "$cmd\r"
expect_prompt
}
proc main {} {
open_conn
send_cmd "echo spawn_id=$spawn_id"
send_cmd "ps Tu"
close_conn
}
main
[STEP 102] $
输出:
[STEP 103] $ expect foo.exp
spawn bash --noprofile --norc
bash-4.4$ echo spawn_id=exp6
spawn_id=exp6
bash-4.4$ ps Tu
USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND
root 71513 0.0 0.0 2433012 788 s013 R+ 12:58PM 0:00.00 ps Tu
pynexj 71510 0.0 0.0 2445360 1572 s013 Ss 12:58PM 0:00.01 bash --noprofile --norc
bash-4.4$ exit
exit
[STEP 104] $
关于ssh - 如何在 TCL Expect 中的多个程序之间共享一个衍生的 SSH 进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44600154/
我是 TCL 新手,正在努力访问其他模块。 SOURCE 命令帮助我包含了我在 TCL 程序中编写的其他代码。但是,我认为我在访问代码库时遇到了问题。 例如,当我引用一个数学函数时,找不到它。我认为在
我有两个 tcl 脚本。我想在第一个脚本完成后运行第二个脚本。我该怎么做? 最佳答案 取决于你的真正意思。 一种方法是编写第三个(“主”)脚本 source /the/path/to/the/firs
相比之下,使用 TCL C API 读取文件和填充 TCL 数组会快得多吗?对标准 TCL 做同样的事情。我有一个大约 100+MB 的大文件,我需要读取它并设置一些哈希条目。使用 TCL C API
相比之下,使用 TCL C API 读取文件和填充 TCL 数组会快得多吗?对标准 TCL 做同样的事情。我有一个大约 100+MB 的大文件,我需要读取它并设置一些哈希条目。使用 TCL C API
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 6年前关闭。 Improve thi
我有以下基本代码: proc test {} { set my_var2 3 foreach iter {1 2 3} { set my_var1 4
例如,在 Perl 中,要获取从 1 到 10 的连续数字数组,您可以简单地执行以下操作: @myArray = (1 .. 10); 这两个句点用作此操作的简写,而不是制作 for 循环或手动写出整
我有一个列表,我正在尝试修改它并根据我想要实现的目标制作一个新列表。 原始列表 $> set a {123.4:xyz 123.4:pqr 123.4:xyz 123.4:abc 123.4:mno}
在TCL中是否可以将参数的默认值作为函数调用的返回值? proc GetParameterValue { } { # calculation for value... return v
有些东西在说谎...... 请记住,当我手动运行脚本时,这会按预期工作,但当它通过任务调度程序运行时则不会。 我有一个 TCL 脚本,用于检查网络驱动器上是否存在文件,如果存在则将其删除。我通过以下方
如果不是,它是什么? 我读到的关于 TCL 的所有内容都指出,所有内容都只是其中的一个字符串。解释器内部可以有一些其他类型和结构(为了性能),但在 TCL 语言级别,一切都必须表现得像一个字符串。还是
我已经开发了一些代码,但我在 Linux 机器上遇到了 Tcl 解释器的错误标记问题。 #!/usr/bin/tclsh if {1} { puts "abc1" } elseif {} {
我需要一些帮助来定义数组以及在 TCL 中显示和循环它们。 这是我将如何在 php 中执行它们。 $date =array(); $size=0; $date[$size] =$pre_event_d
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be
谁能解释一下init.tcl有什么用? TCL 解释器实际上何时加载它? 该文件的描述如下 startup file for TCL . 但据我所知.tclshrc是启动文件。 谁能解释一下吗? 最佳
我试图通过在函数外部声明它来使用全局变量 (gpio_out_set_3)(因为该变量将来也可能在其他函数中使用)。在函数内部,我已将相同的变量声明为“global”并尝试通过“$gpio_out_s
我在 TCL 中有代码: set a 1 set b 0 set c "Start" if { $a == 1 && ($b == 1 || $c == "Start") } { puts W
我正在实习,实习要求我学习和练习 TCL - OO,所以我一直在寻找有关 TCL - OO 的教程、示例和书籍,但我找不到任何东西,所以如果有人可以的话,我将非常感激给我一些关于 TCL - OO 的
我试图通过在函数外部声明它来使用全局变量 (gpio_out_set_3)(因为该变量将来也可能在其他函数中使用)。在函数内部,我已将相同的变量声明为“global”并尝试通过“$gpio_out_s
如何通过键盘向 Tcl 脚本提供输入? C 中有类似 scanf() 的东西吗? 最佳答案 gets命令可能就是您想要的。 set data [gets stdin] # or set numchar
我是一名优秀的程序员,十分优秀!