LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   how to check which grp a user belong to? (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-check-which-grp-a-user-belong-to-484562/)

binary_0011 09-18-2006 04:18 AM

how to check which grp a user belong to?
 
using command line, how do i check which group/groups a user is belonging to?

THanks.

acid_kewpie 09-18-2006 04:27 AM

try this
Code:

id -a

bigrigdriver 09-18-2006 04:29 AM

groups <username>, where <username> is the name of the user.

vls 09-18-2006 05:12 AM

And the hard way :) :

Code:

grep user /etc/group |cut -d':' -f1


All times are GMT -5. The time now is 10:20 PM.