Return user and group IDs (POSIX)
id [username] id -G [-n] [username] id -g [-nr] [username] id -u [-nr] [username]
QNX Neutrino
The id utility writes the current real and/or effective user ID and group ID. When no options are specified, output is as follows:
uid=nnn(username) gid=nnn(groupname)
If the effective user ID is different from the real user ID, the effective user ID also appears:
... euid=nnn(effective_username)
Likewise, if the effective group ID is different from the real group ID, the effective group ID appears as well:
... egid=nnn(effective_groupname)
If no entry exists for an ID in the /etc/passwd or /etc/group files, the output lacks the (name) after the numerical value. No error is generated.
If a username is supplied as an operand, the effective uid and gid don't appear since there's no process associated with it — the information is simply looked up in the /etc/passwd and /etc/group files.
When options are specified, the requested data is written as an unsigned integer, unless option -n is specified, in which case the data is written as the corresponding user or group name. With option -G, the id utility might produce two lines of output (one value per line) if the real and effective IDs differ. In all other cases, id always produces one line of output.
Write information on current IDs (real and effective):
$ id uid=109(eric) gid=120(techies)
Write the effective group ID as a number:
$ id -g 120
Write the effective group ID as a name:
$ id -gn techies