Jawaban:
Coba ini:
write yang /dev/pts/6
#type your message
#ctrl + D (EOF)
Lihat: man 1 write
atau echo "message" > /dev/pts/6
~# tty
/dev/pts/89
~# echo hello to myself >/dev/pts/89
hello to myself
atau
~# echo hello to myself >`tty`
hello to myself
atau untuk menulis beberapa baris:
~# cat >>`tty`
hello
from another
way
of doing this
^D
Di mana ^ D = CTRL + D.