hello,

I would like to know, if there is a possibility to connect to other terminal from an other terminal?

if I run in terminal redirected to tty1, and I want to see what is being printed out in tty2, how can I see it from my terminal? assume I have all the right permissions.
I know that if I do
Code:
echo "Hello terminal number 2, this is terminal number 1" > /dev/tty2
It writes to the second terminal the output, but I want to do the opposite action, to read from the second terminal.

How?