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?
Versuche dies:
write yang /dev/pts/6
#type your message
#ctrl + D (EOF)
sehen: man 1 write
oder echo "message" > /dev/pts/6
~# 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.