উত্তর:
এটা চেষ্টা কর:
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।