Computerglitch

An ongoing adventure

Listing All User Accounts on the System

To view all username accounts on the system from the command line issue the following:

# awk -F: ‘$3 >= 500 {print $1}’ /etc/passwd

Comments