我有一个有自己提示的程序
example_program>
我需要通过这个程序运行一系列命令
example_program> command_A
example_program> command B
Please enter input: [input_here]
example_program> command C
我可以通过shell脚本中的以下行发送命令A,B,C:
(echo "command_C" && cat) | (echo "command_B" && cat) | (echo "command_A" && cat ) | example_program
如何输入所需的输入并在命令B([input_here])后提示输入?
我无权发送或期待。
答案 0 :(得分:1)
我猜这会有效,但这只是猜测,因为我们不知道你的程序如何读取响应:使用here-doc,并在调用命令B后输入命令B
example_program <<'END'
command_A
command B
input_here
command C
END