id Command Examples in Linux

The id command is used to display user ID (UID) and group ID (GID) information. Entering the command with no options displays information about the user who is currently logged in. You can also specify a user name as an option to display ID information about a specific user.

Syntax

The syntax of the id command is:

# id [options] [user name]

id Command Examples

1. To print the current user ID:

# id 

2. To ge the all the identification information of the a user:

# id -a
# id -a mike 

3. To print only the security context of the user:

# id -Z
# id --context 

4. To print only the effective group ID:

# id -g
# id --group 

5. To print all the group IDs:

# id -G
# id --groups 

6. To print the name instead of number:

# id -n
# id --name 

7. To print the real ID instead of effective ID:

# id -r
# id --real 

8. To print only the effective ID:

# id -u
# id --user 

9. To get the help for ID command:

# id --help 

10. To get the version of the ID command:

# id --version
Related Post