Ini adalah salah satu entri dari output who
:
yang pts/6 2011-06-22 09:25 (10.231.22.12)
Apakah ada cara untuk mengirim pesan di sana?
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.