我有一个 bash 脚本 a.sh
而当我运行 a.sh 时,我需要填写几个 read。让我们这样说
./a.sh
Please input a comment for script usage
test (I need to type this line mannually when running the script a.sh, and type "enter" to continue)
现在我在我的新脚本 b.sh 中调用 a.sh。我可以让 b.sh 自动填写“测试”字符串吗?
还有一个问题, a.sh 拥有大量打印到控制台,我可以通过在我的 b.sh 中做某事而不更改 a.sh 来使来自 a.sh 的打印静音吗?
谢谢。