Shell 脚本输出和来自 C 程序的输入

Shell 脚本输出和来自 C 程序的输入

我是 Shell 脚本的新手。我应该如何使用 shell 将我执行的 c 程序的输出作为另一个 c 程序的输入。

答案1

假设program1将数据发送到 stdout 并program2从 stdin 接收数据:

program1 | program2

答案2

你需要了解 bash管道重定向。特别是要将一个程序的输出传递给另一个程序的输入,请使用运算|

program | another_program

相关内容