Linux + 仅向特定用户发送留言墙

Linux + 仅向特定用户发送留言墙

众所周知,我们可以向Linux机器上的所有用户发送广播消息。

但是如何只向特定用户发送消息呢?

例如:

#who

rodegc  pts/1        2015-05-04 04:23 (10.4.72.1)
dwwar   pts/3        2015-05-03 00:56 (10.4.72.2)
tzcsar  pts/5        2015-05-03 22:32 (10.4.72.6)
.
.
.
.
.

在这种情况下,如何仅向用户 rodegc 发送广播消息?

从手册页:

 WALL(1)                       Linux User's Manual                      WALL(1)

 NAME
 wall -- send a message to everybodyגs terminal.

 SYNOPSIS
 wall [-n] [ message ]

从手册页中,我看不到任何发送给特定用户的选项。

答案1

write

write <user> 
Some text goes here
CTRL-D (eof)

选择:

echo "Some text goes here" | write <user>

man write

相关内容