Connecting input _and_output between of two commands in shell/bash - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T23:36:16Z http://stackoverflow.com/feeds/question/139484 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash 4 Connecting input _and_output between of two commands in shell/bash per.mildner 2008-09-26T13:24:07Z 2009-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-&gt;B: /' "$fifodir/echoAtoB" &amp; bash-3.2$ sed -u 's/^/B-&gt;A: /' "$fifodir/echoBtoA" &amp; bash-3.2$ mkfifo "$fifodir/loopback" bash-3.2$ nc -l -p 47002 &lt; "$fifodir/loopback" \ | tee "$fifodir/echoAtoB" \ | nc -l -p 47001 \ | tee "$fifodir/echoBtoA" &gt; "$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-&gt;A: input to port 47001 A-&gt;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#139495 4 Answer by JeeBee for Connecting input _and_output between of two commands in shell/bash JeeBee 2008-09-26T13:26:25Z 2008-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#139518 1 Answer by Aaron Maenpaa for Connecting input _and_output between of two commands in shell/bash Aaron Maenpaa 2008-09-26T13:30:45Z 2008-09-26T13:30:45Z <p>You could probably get away with named pipes:</p> <pre><code>mkfifo pipe gawk '$1' &lt; pipe | gawk '$1' &gt; pipe </code></pre> http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash/139532#139532 1 Answer by sherbang for Connecting input _and_output between of two commands in shell/bash sherbang 2008-09-26T13:33:35Z 2008-09-26T13:33:35Z <p>How about a named pipe?</p> <pre><code># mkfifo foo # A &lt; foo | B &gt; foo # rm foo </code></pre> <p>For your second part I believe tee is the correct answer. So it becomes:</p> <pre><code># A &lt; foo | tee logfile | B &gt; foo </code></pre> http://stackoverflow.com/questions/139484/connecting-input-andoutput-between-of-two-commands-in-shell-bash/139602#139602 0 Answer by Bruno Gomes for Connecting input _and_output between of two commands in shell/bash Bruno Gomes 2008-09-26T13:49:26Z 2008-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#139629 0 Answer by mweerden for Connecting input _and_output between of two commands in shell/bash mweerden 2008-09-26T13:53:29Z 2008-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#527491 0 Answer by motas for Connecting input _and_output between of two commands in shell/bash motas 2009-02-09T09:12:26Z 2009-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>|&amp;</code> is (pipe) operator to start co-process and <code>&amp;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#527520 0 Answer by motas for Connecting input _and_output between of two commands in shell/bash motas 2009-02-09T09:24:35Z 2009-02-09T09:24:35Z <p>There is mistake in my previous comment, redirection should be in booth ways:</p> cmd1 |&amp; cmd2 &gt;&amp;p &lt;&amp;p