回答:
これを試して:
write yang /dev/pts/6
#type your message
#ctrl + D (EOF)
見る: man 1 write
または echo "message" > /dev/pts/6
~# tty
/dev/pts/89
~# echo hello to myself >/dev/pts/89
hello to myself
または
~# echo hello to myself >`tty`
hello to myself
または、複数の行を記述します。
~# cat >>`tty`
hello
from another
way
of doing this
^D
ここで、^ D = CTRL + D。