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.
