I have a number of files "xyz.1", xyz.2",... under the directory "dirname"
cd dirname(with permission of 775)
ls -l
-rw-rw---- david users xyz.1
-rw-rw---- david users xyz.2
...
now, I have another id called "john", and he belongs to group "grp-a", and "john" want to be able to read all these xyz.* files. What I should do to achive this?
I did chmod 2775 on dirname, but "john" still can't read all these xyz.* file.
Can 2775 to achive what I want, and what is the correct method to achive what I want.
Thanks,
none