You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
806 B

7 years ago
wall
===
向系统当前所有打开的终端上输出信息
## 补充说明
**wall命令** 用于向系统当前所有打开的终端上输出信息。通过wall命令可将信息发送给每位同意接收公众信息的终端机用户若不给予其信息内容则wall命令会从标准输入设备读取数据然后再把所得到的数据传送给所有终端机用户。
### 语法
```
wall(参数)
```
### 参数
消息:指定广播消息。
6 years ago
### 实例
7 years ago
6 years ago
```sh
输入重定向将wishes文件中内容广播到所有登陆的用户终端屏幕上
wall < /etc/wishes
7 years ago
```
6 years ago
```sh
wall this is a test line
7 years ago
Broadcast message from root (pts/1) (Fri Dec 20 11:36:51 2013):
this is a test line
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->