redirect the stdin to come from a different terminal using Bash - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:36:55Z http://stackoverflow.com/feeds/question/640493 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/640493/redirect-the-stdin-to-come-from-a-different-terminal-using-bash 2 redirect the stdin to come from a different terminal using Bash scorpio 2009-03-12T21:09:50Z 2009-03-13T20:44:38Z <p>Hello. I'm wondering how one would go about redirecting the stdin of a script from the current xterm session i.e. /dev/pts/0 to one that is also running i.e /dev/pts/1 using bash? I have a bash script that opens 3 xterm windows and I want to get input from only one of those windows and I cannot figure out how to do it. Any help is appreciated! thanks.</p> http://stackoverflow.com/questions/640493/redirect-the-stdin-to-come-from-a-different-terminal-using-bash/640514#640514 0 Answer by rmeador for redirect the stdin to come from a different terminal using Bash rmeador 2009-03-12T21:16:45Z 2009-03-12T21:16:45Z <p>I suspect this is not possible. AFAIK, without modifying something in kernel space, it's impossible to read the input from a tty (or pty) that is not the current tty. Even root can't do it. I spent some time looking into this and I was unable to find out how to do it, but I did find lots of sources claiming it was impossible. This appears to have been a design decision to increase security/privacy of users.</p> http://stackoverflow.com/questions/640493/redirect-the-stdin-to-come-from-a-different-terminal-using-bash/641196#641196 2 Answer by Ian Kelling for redirect the stdin to come from a different terminal using Bash Ian Kelling 2009-03-13T01:49:14Z 2009-03-13T20:44:38Z <p>To answer your clarified question, a simple way is to use a FIFO (named pipe) for the job. On sending terminal:</p> <pre><code>mkfifo ./myfifo read var echo "var" &gt; myfifo </code></pre> <p>On the recieving terminal:</p> <pre><code>read line &lt; ./myfifo </code></pre> <p>To simply print an another xterm from your own, in recieving xterm:</p> <pre><code>$ tty /dev/pts/2 </code></pre> <p>In sending xterm:</p> <pre><code>$ echo howdy doody &gt; /dev/pts/2 </code></pre> <p>Or from a script in the sending xterm, redirecting stdin as you asked:</p> <pre><code>$ cat &gt; /dev/pts/2 </code></pre> <p>You have to chmod the permissions to write to /dev/pts/2 if your doing this across users.</p> <p>You cannot capture whats printed this way on the recieving terminal. There is no builtin redirection method to capture the input from another terminal. </p> <p>If you want an automated way for the sending xterm to find out the character device of the receiving one, that could be answered several ways depending on what kind of interprocess communication you want to use. A simple hack would be for the receiver to do tty > file1 and the sender to do echo whatever > $(cat file1).</p> <p>If you want to try and direct this from the receiver instead of the sender, again you have an interprocess communication problem that can be solved in several ways.</p> http://stackoverflow.com/questions/640493/redirect-the-stdin-to-come-from-a-different-terminal-using-bash/643585#643585 0 Answer by scorpio for redirect the stdin to come from a different terminal using Bash scorpio 2009-03-13T16:39:18Z 2009-03-13T16:39:18Z <p>I guess I should have clarified what I wanted to do. I will start a script from a pty, let's say it's /dev/pts/3. This script will open 3 xterminals, lets say: /dev/pts/0, /dev/pts/1, and /dev/pts/2. These 3 new ptys are what the user is going to see. The script asks the user for some input and I want the input of the user to be typed into /dev/pty/1 and the program should get it's info from there. However I've tried to do this and it doesn't work. Here's a snippet of my code. </p> <pre><code>exec&lt;/dev/pts/1 echo echo "Would you like to search for more info?" 1&gt;/dev/pts/1 read answer case $answer in y) echo "YES" ;; n) echo "NO" ;; *) echo "y/n only!";; esac </code></pre> <p>The case statement at the end is just a little placeholder to see if the input actually worked.</p>