本文介绍了OS X/Linux:通过管道进入两个进程?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道
program1 | program2
和
program1 | tee outputfile | program2
但是有办法将program1的输出同时输入到program2和program3吗?
but is there a way to feed program1's output into both program2 and program3?
推荐答案
您可以使用tee
和进程替换来实现.
You can do this with tee
and process substitution.
program1 | tee >(program2) >(program3)
program1
的输出将通过管道传递到( )
内部的任何内容,在本例中为program2
和program3
.
The output of program1
will be piped to whatever is inside ( )
, in this case program2
and program3
.
这篇关于OS X/Linux:通过管道进入两个进程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!