1、grep 'user1' /etc/group //找出用户组的gid
user1:x:1004://得出gid=1004
2、 awk -F":" '{print $1"\t"$4}' /etc/passwd |grep '1004' //列出user1组的所有成员
user1 1004