How to check what ‘normal’ users are there on the system

users

I want to find out what 'normal' users are available on a system. By normal, I mean those who are manually created, not those like sshd or gdm.

Best Answer

Typically "normal users" are assigned user ID's >= 1000. If this is the case on your system, then the following could work:

awk -F: '{if ($3 > 999) print $1}' /etc/passwd
Related Question