标签: bash shell
我有一个像这样的bash脚本:
#some commands #..... read answer #.... #Other commands
答案应为yes或no。
yes
no
我想运行脚本并绕过阅读answer,为其赋予值yes。但我无法编辑脚本的代码。
answer
无论如何使用参数或一些bash工具吗?
答案 0 :(得分:2)
只是管道'是''进入脚本的标准输入:
echo yes | your_bash_script