Antworten:
Versuche dies:
write yang /dev/pts/6
#type your message
#ctrl + D (EOF)
sehen: man 1 write
oder echo "message" > /dev/pts/6
~# tty
/dev/pts/89
~# echo hello to myself >/dev/pts/89
hello to myself
oder
~# echo hello to myself >`tty`
hello to myself
oder um mehrere Zeilen zu schreiben:
~# cat >>`tty`
hello
from another
way
of doing this
^D
Wobei ^ D = STRG + D.