我想将两个程序的输出重定向到单个STDIN管道,可能以最有效的方式。

那可能吗?

最佳答案

是。

{ command1 ; command2 ; } | command3

10-04 23:15