Neil Bothwick wrote:
> On Thu, 14 Apr 2016 02:58:09 -0500, Dale wrote:
>
>> While at it, what is a command that lists all the users that are set up
>> on a system? I tried a couple things but only found one that lists who
>> is currently logged in. I would like them all listed.
> cat /etc/passwd ;-)
>
> Or if you want to get clever and give just a list of usernames
>
> awk -F: '{print $1}' /etc/passwd
>
>
It appears both yours and Joost's spit out the passwd file. It works
tho. I knew there was a way but couldn't remember what it was. There
sure are a lot of them.
Thanks to both.
Dale
:-) :-)