Another way: ``` select uid, username, directory f...
# macos
t
Another way:
Copy code
select uid, username, directory from user_groups join users using (uid) where user_groups.gid = '80';
and to remove root:
Copy code
select uid, username, directory from user_groups join users using (uid) where user_groups.gid = '80' and uid != 0;