This lesson covers various aspects of managing users at the command line in Linux.
List the users on your Linux server at the command line
To list the users on your Linux server at the command line, type the following:
cat /etc/passwd
This will give you a list of all users on the Linux server along with additional detail. Note that it will list system users as well as "regular" users. To veew just the regular users on the server, you can type the following:
cat /etc/passwd |grep 500*
