Find Group permission Unix
To find all groups and its permissions with user name who belong to the group you could use below command:
$ sudo cat /etc/group
$ sudo less /etc/group
Press q to exit
$ sudo more /etc/group
$ sudo cut -d: -f1 /etc/group
- For more information please refer Unbuntu manual here