id
Linux Command – id ใช้ในการแสดงข้อมูล user, group ในระบบ
คำสั่ง
1. แสดงข้อมูล user ทั้งหมด
$ id uid=1000(sai) gid=1000(sai) groups=1000(sai),4(adm),24(cdrom),27(sudo),30(dip),46(plugdev),110(lxd),113(sambashare),118(lpadmin)
$ id root uid=0(root) gid=0(root) groups=0(root)
2. แสดงข้อมูล user id
$ id -u 1000
3. แสดงข้อมูล group id
$ id -g 1000
โครงสร้างคำสั่ง
id [OPTION]... [USER]
รายละเอียด
เป็นคำสั่งที่ใช้ในการแสดงข้อมูล user, group ในระบบ โดยระบุข้อมูล user ถ้าไม่ระบุจะใช้ข้อมูลของ user ที่ใช้งานปัจจุบัน
Option
-a ignore, for compatibility with other versions -Z, --context print only the security context of the process -g, --group print only the effective group ID -G, --groups print all group IDs -n, --name print a name instead of a number, for -ugG -r, --real print the real ID instead of the effective ID, with -ugG -u, --user print only the effective user ID -z, --zero delimit entries with NUL characters, not whitespace; not permitted in default format --help display this help and exit --version output version information and exit Without any OPTION, print some useful set of identified information.
กลุ่มคำสั่ง
–
Reference:
Author: Suphakit Annoppornchai
Credit: https://saixiii.com
[…] id […]