Wie sende ich eine Nachricht an einen bestimmten Punkt?

8

Dies ist ein Eintrag der Ausgabe von who:

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

Gibt es eine Möglichkeit, dort eine Nachricht zu senden?

Linux
quelle

Antworten:

14

Versuche dies:

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

sehen: man 1 write


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

Prinz John Wesley
quelle
-2
~# tty
/dev/pts/89
~# echo hello to myself >/dev/pts/89
hello to myself

oder

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

oder um mehrere Zeilen zu schreiben:

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

Wobei ^ D = STRG + D.

0xdecaffedc0ffee
quelle
2
-1, weil sie dies nichts zur bestehenden Antwort hinzufügen
HBruijn