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.

55 lines
1.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

who
===
显示目前登录系统的用户信息
## 补充说明
**who命令** 是显示目前登录系统的用户信息。执行who命令可得知目前有那些用户登入系统单独执行who命令会列出登入帐号使用的终端机登入时间以及从何处登入或正在使用哪个X显示器。
### 语法
```
who(选项)(参数)
```
### 选项
```
-H或--heading显示各栏位的标题信息列
-i或-u或--idle显示闲置时间若该用户在前一分钟之内有进行任何动作将标示成"."号如果该用户已超过24小时没有任何动作则标示出"old"字符串;
-m此参数的效果和指定"am i"字符串相同;
-q或--count只显示登入系统的帐号名称和总人数
-s此参数将忽略不予处理仅负责解决who指令其他版本的兼容性问题
-w或-T或--mesg或--message或--writable显示用户的信息状态栏
--help在线帮助
--version显示版本信息。
```
### 参数
文件:指定查询文件。
### 实例
```
[root@localhost ~]# who
root pts/0 2013-08-19 15:04 (192.168.0.134)
root pts/1 2013-12-20 10:37 (180.111.155.40)
[root@localhost ~]# who -q
root root
# users=2
[root@localhost ~]# who -H
NAME LINE time COMMENT
root pts/0 2013-08-19 15:04 (192.168.0.134)
root pts/1 2013-12-20 10:37 (180.111.155.40)
[root@localhost ~]# who -w
root + pts/0 2013-08-19 15:04 (192.168.0.134)
root + pts/1 2013-12-20 10:37 (180.111.155.40)
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->