Le 2017-05-06 20:27, Luke Small a écrit :
Is there a way to determine all users on a system that the users command
doesn't seem to show? like _x11 and _ntpd

hello
system users has an uid < 1000 you can retrieve them like by parsing /etc/passwd like this

awk -F ':' '{ if($2 < 1000) { print $1 }}' /etc/passwd

you can replace $1 by $0 if you want the whole line instead of only the login.

Reply via email to