Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 linux 中,我想查看所有用户组。我怎样才能做到这一点?我是否正确理解了组的概念?
cat /etc/group |cut -d: -f1将为您提供所有组的列表。groups将为您提供用户所在的所有组的列表。
cat /etc/group |cut -d: -f1
groups
awk -F: '{print "group name ", $1, " groupid ", $3}' /etc/group
您也可以在命令行中键入不带参数的 mkgroup,或者
mkgroup --help
更多细节。