exec.shのようなbashスクリプトがあります
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" ジャッジステートメント
何かアイデアはありますか?ありがとう!