How to check if a user belongs to a group (KSH)?

Hi all,

How can I check if a particular user id belongs to a group?

(ie. how to check if the current user `whoami` is part of the a certain group? do i use the group name of group id?)

Thanks in advance

Try this:

groups

A more crude method:

cat /etc/group | grep `whoami`