id命令简介:
此命令用于查看用户的帐号属性信息
1.命令格式:
id [option] USERNAME
2.命令功能:
用于查看系统中已存在用户账号的属性信息。
[[email protected] test1]# id tom
uid=666(tom) gid=666(tom) 组=666(tom),500(donggen)
3.命令参数:
-u 只查看用户的ID号uid
-g 只查看用户的组ID号gid
-G 只查看用户的附加组id号GID
-n 查看用户信息以名称显示,不以ID号显示,搭配-u -g -G一起使用。
4.命令实例:
1、id -u tom 显示用户tom的uid号
[[email protected]xuelinux test1]# id -u tom
666
2、id -g tom 显示用户tom的gid号
[[email protected] test1]# id -g tom
666
3、id -G tom 显示用户tom的GID号(附加组号)
[[email protected] test1]# id -G tom
666 500 默认附件组中一定有一个基本组以及其他附件组。
4、id -G -n tom 显示用户tom的GID号(附加组号),并以名称显示
[[email protected] test1]# id -G -n tom
tom donggen
5、
时间: 2024-11-02 08:24:11