-5

Possible Duplicate:
Setting permissions for specific user and groups in Linux

I have put some users into a group and would like to know how I use chmod to change the access permissions for only the members of that group. Thank you.

1 Answers1

2
chmod g(+|-|=)<flags> [file ...]

Example:

chmod g+rw shared-file.txt
ReyCharles
  • 1,151