在shell脚本中绕过read命令

时间:2013-09-03 11:43:28

标签: bash shell

我有一个像这样的bash脚本:

#some commands
#.....
read answer
#....
#Other commands

答案应为yesno

我想运行脚本并绕过阅读answer,为其赋予值yes。但我无法编辑脚本的代码。

无论如何使用参数或一些bash工具吗?

1 个答案:

答案 0 :(得分:2)

只是管道'是''进入脚本的标准输入:

echo yes | your_bash_script