View users in a specific user group
How to view users in a specific user group?
You can utilize the search button to display members belonging to a particular user group.
Choose User Group from the dropdown menu and enter the specific user group's name to locate members belonging to that particular user group.
You can also generate user reports as csv files to view users in a specfic user group. Run the below command after generating the user report
root@gateway-server:~# cat filename.csv | grep -i 'usergroup_name' | awk -F ',' '{print $1}' | sort | uniq
Replace "filename" with the name of your generated CSV file and "usergroup_name" with the specific user group.
For example
root@gateway-server:~# cat GroupAdmins.csv | grep -i 'Admins' | awk -F ',' '{print $1}' | sort | uniq
The above command will help you identify all the members who belong to the user group 'Admins' within your generated user report which is named GroupAdmins.csv.