使用 groups命令在标准输入输出上输出指定用户所在组的组成员,每个用户属于/etc/passwd中指定的一个组和在/etc/group中指定的其他组。
**语法格式:** groups [参数]
**常用参数:**
| -help | 显示命令的帮助信息 |
| ----------- | -------------------- |
| --version | 显示命令的版本信息 |
**参考实例**
显示linux用户所属的组:
```
[root@anycode ~]# groups linux
```
显示root组成员:
```
[root@anycode ~]# groups root
```