前端之家收集整理的这篇文章主要介绍了
bash – 如何将stdin连接到管道?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在bash中将管道和stdin的
输出发送到管道.
即:
gen_input | cat - | parse_input_and_stdin
将gen_input的输出发送到parse_input_and_stdin,然后打开stdin以获得更多交互式输入.
@H_
404_7@
@H_
404_7@
cat <(gen_input) - | parse_input_and_stdin
@H_
404_7@
原文链接:https://www.f2er.com/bash/384816.html