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
--
Neil Bothwick
Set phasers to extreme itching!
pgpSulPpb6l8D.pgp
Description: OpenPGP digital signature

