Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two processes that interface with one another over stdin and stdout.

Suppose I have process A and process B. The stdout of B needs to feed into the stdin of A, and the stdout of A needs to feed in to that of process B.

Is there a simple way to express this relationship in a simple command, or is there a basic shell script that can enable this?

Thanks in advance.

share|improve this question

3 Answers

up vote 2 down vote accepted

Take a look at named pipes. Create one pipe for A to B, and one pipe for B to A. Then start A with its stdout redirected to the first, and its stdin redirected to the second. Then start B with the opposite.

It would look something like this:

mkfifo --mode=0666 /tmp/AtoB
mkfifo --mode=0666 /tmp/BtoA
A < BtoA > AtoB
B < AtoB > BtoA

add: Of course, they'll need some way to recognize that both parties are present. Something like a simple "I am here, are you?" that both receive a response to.

Important: As noted in comments below, this process will deadlock with both programs blocking on reads. Some form of coordination will be necessary to ensure this doesn't happen.

share|improve this answer
Thanks. I suppose each fifo is trivially small, right? Such that if the script does not remove them, it won't be a problem. Also, if a pipe with that name already exists, will it just overwrite it? – B. VB. Mar 13 '12 at 18:07
1  
They aren't actually files on disk, just special files in the filesystem. They take up 0 bytes. Regarding overwriting, man mkfifo says that it'll return with an error EEXIST – user530229 Mar 13 '12 at 18:10
Ok, so in my script I'll just make sure I do an rm -f on each fifo name before creating them. – B. VB. Mar 13 '12 at 18:13
This will probably deadlock since the processes will be waiting for each other's input only and their reads will block, so they don't get any chance to produce the output needed by the other side. – MichaƂ Kosmulski Mar 13 '12 at 18:13
@MichaƂKosmulski, I think you're right. Any suggestions? – user530229 Mar 13 '12 at 18:20
show 4 more comments

Bash 4 introduces coproc:

declare -a FDS
coproc FDS { process_A; }
process_B <&${FDS[0]} >&${FDS[1]}
share|improve this answer
1  
Just when I thought I understood all the funny fd manipulations you can do with bash... +1. – je4d Mar 14 '12 at 22:16

(I would comment on Keith's answer, but don't have enough rep yet.)

Testing this on OpenBSD, I found it impossible to start the scripts by running:

./a < btoa > atob &
./b < atob > btoa

(atob and btoa being FIFOs, and the scripts a and b duplicating stdin)

However, after also backgrounding the second one, as soon as I ran > btoa in my shell (the null command, however opening btoa for writing), they started. (Beware the infinite loop!) I guess this means you need a third process.

I'm not sure if the behavior of FIFOs in such cases (e.g. multiple processes opening for writing) is standardized.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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