Linux id命令
Linux id命令用于顯示用戶的ID,以及所屬群組的ID。
id會顯示用戶以及所屬群組的實(shí)際與有效ID。若兩個ID相同,則僅顯示實(shí)際ID。若僅指定用戶名稱,則顯示目前用戶的ID。
語法
id [-gGnru][--help][--version][用戶名稱]
參數(shù)說明:
- -g或--group 顯示用戶所屬群組的ID。
- -G或--groups 顯示用戶所屬附加群組的ID。
- -n或--name 顯示用戶,所屬群組或附加群組的名稱。
- -r或--real 顯示實(shí)際ID。
- -u或--user 顯示用戶ID。
- -help 顯示幫助。
- -version 顯示版本信息。
實(shí)例
顯示當(dāng)前用戶信息
# id //顯示當(dāng)前用戶ID uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel) context=root:system_r:unconfined_t
顯示用戶群組的ID
# id -g 0
顯示所有群組的ID
# id -g 0 1 2 3 4 5 6 10
顯示指定用戶信息
# id hnlinux
更多建議: