Q. How do I check the existing Linux / UNIX users and groups under Linux operating system?
A. You can easily check the existing users and groups under Linux using the following commands.
Find out if user exists in /etc/passwd file
/etc/passwd file stores essential information required during login. All you have to do is search this file for user name using following syntax:
$ egrep -i "^username" /etc/passwd
For, example find out if vivek user exists or not, enter:
$ egrep -i "^vivek" /etc/passwd
Sample output:
vivek:x:1000:1000:Vivek Gite,,,,:/home/vivek:/bin/bash
A quick shell script code:
#!/bin/bash # init USERID="$1" #.... /bin/egrep -i "^${USERID}" /etc/passwd if [ $? -eq 0 ]; then echo "User $USERID exists in /etc/passwd" else echo "User $USERID does not exists in /etc/passwd" fi # ....
Normally, exit status is 0 returned if user accounts (lines) are found and 1 otherwise.
Find out if group exists in /etc/group file
/etc/group is an text file which defines the groups to which users belong under Linux and UNIX operating system. Again, you have to search /etc/group file using following syntax:
$ egrep -i "^groupname" /etc/group
For, example find out if vivek group exists or not, enter:
$ egrep -i "^vivek" /etc/group
id command
id is another command to display user / group information for any USERNAME, or the current user. To find out more about user called, tom, enter:
$ id tom
Sample output
id: tom: No such user
To find out ftpuser group, enter:
$ id -g ftpuser
Sample output:
id: ftpuser: No such user
id command exit status is 0 returned if user accounts (lines) are found and 1 otherwise. A sample shell script using id command:
#!/bin/bash USERID="$1" /bin/id $USERID 2>/dev/null [ $? -eq 0 ] && echo "User found" || echo "User not found" /bin/id -g $USERID 2>/dev/null [ $? -eq 0 ] && echo "Group found" || echo "Group not found"
Further readings:
- Refer to id, passwd, group man pages
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop








![Linux: Find Out My Group Name [ Group Memberships ]](http://s13.cyberciti.org/images/shared/rp/3/11.jpg)




{ 15 comments… read them below or add one }
don’t forget the “:” after the username otherwise you could end up with this scenario:
$ egrep -i “^vivek” /etc/passwd
vivek:x:1000:1000:Vivek Gite,,,,:/home/vivek:/bin/bash
viveks:x:1001:1001:Vivek Smith,,,,:/home/viveks:/bin/bash
If you are using NIS do the following:
ypcat passwd | grep vivek
Ramesh
The Geek Stuff
The ‘id’ command should be demonstrated first in this tutorial, as systems using LDAP (other or remote authentication services) will not have users in the local {passwd,group} files.
Also why the uses of egrep when a simple grep will do. Keep it simple for the beginners your aiming at.
You should look at getent rather than grepping the local files. “getent passwd” or “getent group” will provide a unified view of users or groups available, respecting your NSS (Name Service Switch) configuration (which is important when you have additional users or groups via LDAP or NIS).
hey Vivek, that was cool..
many of us surely wont care if its grep or egrep ( or fgrep) as long as it does the job and we are taught these wonderful tricks..
Can you please tell me a command to list all of existing user ?
U can try
egrep “*” /etc/passwd
or
egrep “?” /etc/passwd
Try:
Very nice site, I could get, what i want in seconds rather than in minutes
`id` comand does not check if groups exist.
`man id`
the -g flag prints out the primary group id for the user
have you find any solution for that?
Hello
Linux Gurus,
Is there a Command to find out user creation date ?
or any other possible ways to find the same.
please help me
Its urgent.
Thanks In Advance
please tell everyone you ask.
no way to list the user is not disabled in linux.
and has been in how long dis.
The grep approaches are all wrong. You are assuming that an user won’t pick a name that is a started substring of an existing group. Even worse, if you choose to limit the ‘username’ string you could match a group instead of a user. You will mistakenly get output from the script thinking that the user ‘apache’ (or whatever) exists…
You can’t play with strings without semantics. You need a tool that in fact *knows* that what you are talking about is indeed a user.
The best approach for not playing with strings semantics is the id command:
NAME
id – print real and effective user and group IDs
Regards
As davidhi mentioned
Using getent is a much better solution in my opinion
# search for user named ‘vivek’
getent passwd vivek
#search for group named ‘vivek’
getent group vivek