gpt4 book ai didi

linux - 在linux中读取expect文件中的输出

转载 作者:太空宇宙 更新时间:2023-11-04 05:20:35 25 4
gpt4 key购买 nike

我正在尝试读取命令的输出并将其设置在变量中,然后像文本一样发送到文件:

expect "~]#" { send "readlink some/link\r" }
set CCM_BUILD $expect_out(buffer)
send_log "CCM: $CCM_BUILD"

但是我在文件中得到的是:

can't read "expect_out(buffer)": no such variable
while executing
"set CCM_BUILD $expect_out(buffer)"
(file "../common/get_build.exp" line 20)^M

我尝试了不同的方法,但没有发现任何效果。我在这里缺少什么?

最佳答案

在调用 expect 之前,变量 $expect_out(buffer) 不会更新。所以尝试这样:

expect "~]#" { send "readlink some/link\r" }
expect "~]#" { set CCM_BUILD $expect_out(buffer) }

关于linux - 在linux中读取expect文件中的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42490612/

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