Eonil Asked: 2011-02-28 01:57:20 +0800 CST2011-02-28 01:57:20 +0800 CST 2011-02-28 01:57:20 +0800 CST How to print list of users and groups on FreeBSD? 772 How to print list of users and groups on FreeBSD? freebsd command 1 Answers Voted Best Answer ooshro 2011-02-28T02:14:03+08:002011-02-28T02:14:03+08:00 users and groups stored in /etc/group and /etc/passwd. To print: awk -F":" '{print $1}' /etc/passwd awk -F":" '{print $1}' /etc/group for more details awk -F":" '{print $0 $1 $2}' /etc/passwd
users and groups stored in /etc/group and /etc/passwd. To print:
for more details