Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设是,这是脚本
#!/usr/bin/expect set a "__test__"
我想在这个脚本中创建一个循环,以便它可以打印值
$a
前面有一个基于循环的数字。
所以如果我想让它循环 3 次.. 最终产品将变为:
1:__test__ 2:__test__ 3:__test__
您可以用于
#!/usr/bin/expect set a "__test__" for {set x 0} {$x<3} {incr x} { puts "$x:$a" }
在tcl 命令中查看更多信息,因为expect它是语言的扩展tcl。
expect
tcl