Connecting input _and_output between of two commands in shell/bash - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T23:36:16Zhttp://stackoverflow.com/feeds/question/139484http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash4Connecting input _and_output between of two commands in shell/bashper.mildner2008-09-26T13:24:07Z2009-02-09T09:24:35Z
<p>I have two (UNIX) programs A and B that read and write from stdin/stdout.</p>
<p>My first problem is how to connect the stdout of A to stdin of B <em>and</em> the stdout of B to the stdin of A. I.e., something like A | B but a bidirectional pipe. I suspect I could solve this by <a href="http://tldp.org/LDP/abs/html/x16834.html" rel="nofollow">using exec to redirect</a> but I could not get it to work. The programs are interactive so a temporary file would not work.</p>
<p>The second problem is that I would like to duplicate each direction and pipe a duplicate via a logging program to stdout so that I can see the (text-line based) traffic that pass between the programs. Here I may get away with tee >(...) if I can solve the first problem.</p>
<p>Both these problems seems like they should have well known solutions but I have not be able to find anything.</p>
<p>I would prefer a POSIX shell solution, or at least something that works in bash on cygwin.</p>
<p>Thanks to your answers I came up with the following solution. The A/B commands uses nc to listen to two ports. The logging program uses sed (with -u for unbuffered processing).</p>
<pre><code>bash-3.2$ fifodir=$(mktemp -d)
bash-3.2$ mkfifo "$fifodir/echoAtoB"
bash-3.2$ mkfifo "$fifodir/echoBtoA"
bash-3.2$ sed -u 's/^/A->B: /' "$fifodir/echoAtoB" &
bash-3.2$ sed -u 's/^/B->A: /' "$fifodir/echoBtoA" &
bash-3.2$ mkfifo "$fifodir/loopback"
bash-3.2$ nc -l -p 47002 < "$fifodir/loopback" \
| tee "$fifodir/echoAtoB" \
| nc -l -p 47001 \
| tee "$fifodir/echoBtoA" > "$fifodir/loopback"
</code></pre>
<p>This listens for connection to port 47001 and 47002 and echos all traffic to standard output.</p>
<p>In shell 2 do:</p>
<pre><code>bash-3.2$ nc localhost 47001
</code></pre>
<p>In shell 3 do:</p>
<pre><code>bash-3.2$ nc localhost 47002
</code></pre>
<p>Now lines entered in shell 2 will be written to shell 3 and vice versa and the traffic logged to shell 1, something like:</p>
<pre><code>B->A: input to port 47001
A->B: input to port 47002
</code></pre>
<p>The above has been tested on Cygwin</p>
<p>Update: The script above stopped working after a few days(!). Apparently it can deadlock. Some of the suggestions in the answers may be more reliable.</p>
http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash/139495#1394954Answer by JeeBee for Connecting input _and_output between of two commands in shell/bashJeeBee2008-09-26T13:26:25Z2008-09-26T13:26:25Z<p><a href="http://bisqwit.iki.fi/source/twinpipe.html" rel="nofollow">http://bisqwit.iki.fi/source/twinpipe.html</a></p>
http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash/139518#1395181Answer by Aaron Maenpaa for Connecting input _and_output between of two commands in shell/bashAaron Maenpaa2008-09-26T13:30:45Z2008-09-26T13:30:45Z<p>You could probably get away with named pipes:</p>
<pre><code>mkfifo pipe
gawk '$1' < pipe | gawk '$1' > pipe
</code></pre>
http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash/139532#1395321Answer by sherbang for Connecting input _and_output between of two commands in shell/bashsherbang2008-09-26T13:33:35Z2008-09-26T13:33:35Z<p>How about a named pipe?</p>
<pre><code># mkfifo foo
# A < foo | B > foo
# rm foo
</code></pre>
<p>For your second part I believe tee is the correct answer. So it becomes:</p>
<pre><code># A < foo | tee logfile | B > foo
</code></pre>
http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash/139602#1396020Answer by Bruno Gomes for Connecting input _and_output between of two commands in shell/bashBruno Gomes2008-09-26T13:49:26Z2008-09-26T13:49:26Z<p>You can use <a href="http://expect.nist.gov/" rel="nofollow">Expect</a>.</p>
<blockquote>
<p>Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc.</p>
</blockquote>
<p>You could use the following code (taken from the <em>Exploring Expect</em> book) as a starting point - it connects the output of proc1 to the input of proc2 and vice versa, as you requested:</p>
<pre><code>#!/usr/bin/expect -f
spawn proc1
set proc1 $spawn_id
spawn proc2
interact -u $proc1
</code></pre>
http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash/139629#1396290Answer by mweerden for Connecting input _and_output between of two commands in shell/bashmweerden2008-09-26T13:53:29Z2008-09-26T13:53:29Z<p>This question is similar to <a href="http://stackoverflow.com/questions/40244/how-to-make-a-pipe-loop-in-bash">one</a> I asked before. The solutions proposed by others were to use named pipes, but I suspect you don't have them in cygwin. Currently I'm sticking to <a href="http://stackoverflow.com/questions/40244/how-to-make-a-pipe-loop-in-bash#43332">my own (attempt at a) solution</a>, but it requires <code>/dev/fd/0</code> which you probably also don't have.</p>
<p>Although I don't really like the passing-command-lines-as-strings aspect of <code>twinpipe</code> (mentioned by JeeBee (<a href="http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shellbash#139495">139495</a>)), it might be your only option in cygwin.</p>
http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash/527491#5274910Answer by motas for Connecting input _and_output between of two commands in shell/bashmotas2009-02-09T09:12:26Z2009-02-09T09:12:26Z<p>I spent a lot of time on this, gave it up, and last decided to use ksh (korn shell), which allows this.</p>
<pre>cmd1 |& cmd2 >&p </pre>
<p>where <code>|&</code> is (pipe) operator to start co-process and <code>&p</code> is file descriptor of that co-process.
<br>Sorry, if my answer ins't helpfull, I don't know wheter you may use ksh.</p>
http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash/527520#5275200Answer by motas for Connecting input _and_output between of two commands in shell/bashmotas2009-02-09T09:24:35Z2009-02-09T09:24:35Z<p>There is mistake in my previous comment, redirection should be in booth ways:</p>
cmd1 |& cmd2 >&p <&p