我已经尝试过这段代码,期待“-bash-4.3 $”
expect "-bash-4.3$"
但它不起作用
答案 0 :(得分:2)
你需要写expect -- -string
否则会认为-string
是一个选项。
# expect -c 'expect -bash'
bad flag "-bash": must be -glob, [...], -timeout, -nobrace, or --
while executing
"expect -bash"
# expect -c 'expect -- -bash'
答案 1 :(得分:0)
如果它显示
'no such file or directory'
那么你使用它错了!
您需要定义<testing_expect_script>.exp
和
执行$ ./<testing_expect_script>.exp
您可以使用以下操作让您的脚本执行某些操作 -