>Is there an easy way to get a list of all regular user ( UID > 1000 ) >accounts on the system? I can't find the userls command I used to use >on SCO.
awk -F ':' '{if ($3 > 999) print $0}' < /etc/passwd
>Is there an easy way to get a list of all regular user ( UID > 1000 ) >accounts on the system? I can't find the userls command I used to use >on SCO.
awk -F ':' '{if ($3 > 999) print $0}' < /etc/passwd