Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个脚本,我在脚本中启动它,但需要键入“end”才能正确关闭,无论如何我可以从带有 PID 的脚本内部执行此操作吗?
对于这种情况,您甚至可以使用 here-string:
$ myscript <<< end
这将使您的脚本从给定的字符串中读取,而不是stdin
stdin
听起来你需要一个heredoc。
$ myscript <<EOF end EOF
所以上面的内容将所有内容都输入到您的流程的标准输入中(但不包括该行EOF)
EOF