这是输出的一个条目who
:
yang pts/6 2011-06-22 09:25 (10.231.22.12)
有没有办法向那里发送消息?
答案1
尝试这个:
write yang /dev/pts/6
#type your message
#ctrl + D (EOF)
看:man 1 write
或者echo "message" > /dev/pts/6
答案2
~# 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。