gpt4 book ai didi

tcl - 如何在 {expect} 脚本中创建 "loop"语句?

转载 作者:行者123 更新时间:2023-12-03 21:37:55 24 4
gpt4 key购买 nike

假设是,这是脚本

#!/usr/bin/expect
set a "__test__"

我想在这个脚本中创建一个循环,以便它可以打印值
 $a

前面有一个基于循环的数字。

所以如果我想让它循环 3 次..最终产品将变成:
 1:__test__
2:__test__
3:__test__

最佳答案

您可以使用 for

#!/usr/bin/expect
set a "__test__"
for {set x 0} {$x<3} {incr x} {
puts "$x:$a"
}

查看更多信息 tcl commands因为 expecttcl 的扩展语。

关于tcl - 如何在 {expect} 脚本中创建 "loop"语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18412485/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com