Is there a way to do something like the following:
/etc/group
----------------
staff:*:10:
student:*:20:
staff+student:*:staff,student
guest:*:40:
That is, I'd like to be able to create a file
owned by "staff+student". Then users in the "staff"
group or in the "student" group could access the
file. But users in "guest" could not access the file.
Jeff Rodriguez