% find . -user root -perm -4000 -print
To find all files that are set group ID (setgid)
staff, use this:
% find . -group staff -perm -2000 -print
Instead of using a name or group from
/etc/passwd or /etc/group,
you can use the UID or GID number:
% find . -user 0 -perm -4000 -print
% find . -group 10 -perm -2000 -print