用户列表文件 /etc/passwd
用户组列表文件 /etc/group
查看系统中有哪些用户
cut -d : -f 1 /etc/passwd
查看可以登录系统的用户
cat /etc/passwd | grep -v /sbin/nologin | cut -d : -f 1