GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
* Sign Up! *

Support
Customer Portal
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
ID(1) FreeBSD General Commands Manual ID(1)

idreturn user identity

id [user]

id -A

id -G [-n] [user]

id -M

id -P [user]

id -c

id -d [user]

id -g [-nr] [user]

id -p [user]

id -s [user]

id -u [-nr] [user]

The id utility displays the user and group names and numeric IDs, of the calling process, to the standard output. If the real and effective IDs are different, both are displayed, otherwise only the real ID is displayed.

If a user (login name or user ID) is specified, the user and group IDs of that user are displayed. In this case, the real and effective IDs are assumed to be the same.

The options are as follows:

Display the process audit user ID and other process audit properties, which requires privilege.
Display the different group IDs (effective, real and supplementary) as white-space separated numbers, in no particular order.
Display the MAC label of the current process.
Display the id as a password file entry.
Ignored for compatibility with other id implementations.
Display current login class.
Display the home directory of the current or specified user.
Display the effective group ID as a number.
Display the name of the user or group ID for the -G, -g and -u options instead of the number. If any of the ID numbers cannot be mapped into names, the number will be displayed as usual.
Make the output human-readable. If the user name returned by getlogin(2) is different from the login name referenced by the user ID, the name returned by getlogin(2) is displayed, preceded by the keyword “login”. The user ID as a name is displayed, preceded by the keyword “uid”. If the effective user ID is different from the real user ID, the real user ID is displayed as a name, preceded by the keyword “euid”. If the effective group ID is different from the real group ID, the real group ID is displayed as a name, preceded by the keyword “rgid”. The list of groups to which the user belongs is then displayed as names, preceded by the keyword “groups”. Each display is on a separate line.
Display the real ID for the -g and -u options instead of the effective ID.
Display the shell of the current or specified user.
Display the effective user ID as a number.

The id utility exits 0 on success, and >0 if an error occurs.

Show information for the user ‘bob’ as a password file entry:

$ id -P bob
bob:*:0:0::0:0:Robert:/bob:/usr/local/bin/bash

Same output as groups(1) for the root user:

$ id -Gn root
wheel operator

Show human readable information about ‘alice’:

$ id -p alice
uid     alice
groups  alice webcamd vboxusers

Assuming the user ‘bob’ executed “su -l” to simulate a root login, compare the result of the following commands:

# id -un
root
# who am i
bob          pts/5        Dec  4 19:51

The id utility is expected to conform to IEEE Std 1003.1-2024 (“POSIX.1”). The -A, -M, -P, -c, -d, -p, and -s options are FreeBSD extensions.

The historic groups(1) command is equivalent to “id -Gn [user]”.

The historic whoami(1) command is equivalent to “id -un”.

The id command appeared in 4.4BSD.

April 19, 2026 FreeBSD 15.1-RELEASE-p1

Search for    or go to Top of page |  Section 1 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.