View Single Post

  #2 (permalink)  
Old 05-18-2008, 10:32 PM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Any distro with shell
Posts: 906
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

To print the groups a user is in use groups command. For example print all groupname vivek user belongs to:
Code:
groups vivek
Sample output:
Code:
vivek : vivek adm dialout cdrom floppy audio dip video plugdev scanner netdev lpadmin powerdev admin dba vboxusers
However, to find out all members of a group, type following
Code:
egrep "^groupname" /etc/group 
egrep "^adm" /etc/group 
egrep "^ftpusers" /etc/group
HTH
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote