I'd like to redirect the stdout of process proc1 to two processes proc2 and proc3:

         proc2 -> stdout
       /
 proc1
       \ 
         proc3 -> stdout

I tried

 proc1 | (proc2 & proc3)

but it doesn't seem to work, i.e.

 echo 123 | (tr 1 a & tr 1 b)

writes

 b23

to stdout instead of

 a23
 b23
link|improve this question

feedback

4 Answers

up vote 38 down vote accepted

In unix (or on a mac), use the tee command:

$ echo 123 | tee >(tr 1 a)  | tr 1 b
b23
a23

Usually you would use tee to redirect output to multiple files, but using >(...) you can redirect to another process. So, in general,

$ proc1 | tee >(proc2) ... >(procN-1) | procN

will do what you want.

Under windows, I don't think the built-in shell has an equivalent. Microsoft's Windows PowerShell has a tee command though.

link|improve this answer
Thank you very much. That >(...) - concept is new to me. Note: It doesn't seem to work under Window's cmd, PowerShell and not even cygwin's bash. – secr Sep 13 '08 at 23:22
I'm not sure how to do it in PowerShell... It doesn't work in cygwin's bash for me either, I wonder whether it's a known limitation or a bug! – dF. Sep 13 '08 at 23:33
1  
This is not a POSIX construct and requires bash or ksh. You're out of luck with tcsh and dash etc. – pixelbeat Sep 15 '08 at 14:46
1  
@pixelbeat: …but it can be broken down to POSIX constructs (see my answer :) – tzot Oct 10 '08 at 10:45
3  
This doesn't do exactly what @secr requested. tee will append the output of a process redirection onto stdout before sending it through the pipe, which is distinctly different than piping the same instance of stdout to multiple commands. @dF, for example, echo 123 | tee >(tr 1 a) | tr 2 b will result in 1b3 ab3, which makes no sense in the context of the original question. – Dejay Clayton Sep 21 '11 at 19:13
show 2 more comments
feedback

Like dF said, bash allows to use the >(…) construct running a command in place of a filename. (There is also the <(…) construct to substitute the output of another command in place of a filename, but that is irrelevant now, I mention it just for completeness).

If you don't have bash, or running on a system with an older version of bash, you can do manually what bash does, by making use of FIFO files.

The generic way to achieve what you want, is:

  • decide how many processes should receive the output of your command, and create as many FIFOs, preferably on a global temporary folder:
    subprocesses="a b c d"
    mypid=$$
    for i in $subprocesses # this way we are compatible with all sh-derived shells  
    do
        mknod /tmp/pipe.$mypid.$i p
    done
  • start all your subprocesses waiting input from the FIFOs:
    for i in $subprocesses
    do
        tr 1 $i </tmp/pipe.$mypid.$i & # background!
    done
  • execute your command teeing to the FIFOs:
    proc1 | tee $(for i in $subprocesses; do echo /tmp/pipe.$mypid.$i; done)
  • finally, remove the FIFOs:
    for i in $subprocesses; do rm /tmp/pipe.$mypid.$i; done

NOTE: for compatibility reasons, I would do the $(…) with backquotes, but I couldn't do it writing this answer (the backquote is used in SO). Normally, the $(…) is old enough to work even in old versions of ksh, but if it doesn't, enclose the part in backquotes.

link|improve this answer
feedback

Since @dF: mentioned that PowerShell has tee, I thought I'd show a way to do this in PowerShell.

PS > "123" | % { 
    $_.Replace( "1", "a"), 
    $_.Replace( "2", "b" ) 
}

a23
1b3

Note that each object coming out of the first command is processed before the next object is created. This can allow scaling to very large inputs.

link|improve this answer
feedback

Look into the tee command.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.