特定のポイントにメッセージを送信する方法は?


8

これは、出力の1つのエントリですwho

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

そこでメッセージを送る方法はありますか?

回答:



-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。


2
-1これは、既存の回答に何も追加しないため
HBruijn
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.