FreeBSDでユーザーとグループのリストを印刷する方法は?
/ etc/groupおよび/ etc/passwdに格納されているユーザーとグループ。印刷する:
awk -F":" '{print $1}' /etc/passwd awk -F":" '{print $1}' /etc/group