I would like to redirect the output of two programs to a single STDIN pipe, possibly in the most efficient way possible.
Is that possible?
I would like to redirect the output of two programs to a single STDIN pipe, possibly in the most efficient way possible.
Is that possible?
Yes.
{ command1 ; command2 ; } | command3