我有一个 bash 脚本,像 exec.sh
some command
expect test.exp
continue other command
在 test.exp 文件中,我有一个片段,如:
while {[gets $cmds command]>=0} {
send "$command\r"
expect {
"*OK*" {puts $vout $command}
"*fail*" {puts $iout $command}
"*blocked*" { what should I put here????}
}
}
所以我想在大括号中放一些东西,以便执行退出 test.exp 并向 bash 脚本 exec.sh 发出信号,所以 exec.sh 也退出我的想法是设置一个外部变量,然后在 exec.sh 中使用“ if”判断语句
有什么想法吗?谢谢!