show/hide this revision's text 4 added 488 characters in body

In

To answer your clarified question, a simple way is to use a FIFO (named pipe) for the job. On sending terminal:

mkfifo ./myfifo
read var
echo "var" > myfifo

On the recieving terminal:

read line < ./myfifo

To simply print an another xterm from your own, in recieving xterm:

$ tty
/dev/pts/2

In sending xterm:

$ echo howdy doody > /dev/pts/2

Or from a script in the sending xterm, redirecting stdin as you asked:

$ cat > /dev/pts/2

You have to chmod the permissions to write to /dev/pts/2 if your doing this across users.

You cannot capture whats printed this way on the recieving terminal. There is no builtin redirection method to capture the input from another terminal.

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).

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.

show/hide this revision's text 3 added 55 characters in body

In recieving xterm:

$ tty
/dev/pts/2

In sending xterm:

$ echo howdy doody > /dev/pts/2

I'm editing this right now to do it

Or from a script in the sending xterm, redirecting stdin as you asked.:

$ cat > /dev/pts/2

You have to chmod the permissions to write to /dev/pts/2 if your doing this across users.

I use this with tee and 2 xterms and ssh to chat with my girlfriend so we see each others characters right as we type them.

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).

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.

show/hide this revision's text 2 added 559 characters in body

In recieving xterm:

$ tty
/dev/pts/2

In sending xterm:

$ echo howdy doody > /dev/pts/2

I'm editing this right now to do it from a script as you asked.

You have to chmod the permissions to write to /dev/pts/2 if your doing this across users.

I use this with tee and 2 xterms and ssh to chat with my girlfriend so we see each others characters right as we type them.

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).

show/hide this revision's text 1