¿Cómo enviar un mensaje a un pts específico?

8

Esta es una entrada de la salida de who:

yang     pts/6        2011-06-22 09:25 (10.231.22.12)

¿Hay alguna forma de enviar un mensaje allí?

linux
fuente

Respuestas:

14

Prueba esto:

write yang /dev/pts/6
#type your message
#ctrl + D (EOF) 

ver: man 1 write


o echo "message" > /dev/pts/6

Príncipe John Wesley
fuente
-2
~# tty
/dev/pts/89
~# echo hello to myself >/dev/pts/89
hello to myself

o

~# echo hello to myself >`tty`
hello to myself

o para escribir varias líneas:

~# cat >>`tty`
hello
from another
way
of doing this
^D

Donde ^ D = CTRL + D.

0xdecaffedc0ffee
fuente
2
-1 porque esto no agrega nada a la respuesta existente
HBruijn