use the 'chgrp' command to change file group ownership, with the -R option to change ownership to all subdirectories and their contents. ie:
Code:
chgrp -R accounts /.../Documents/
also use the 'chmod' command to change file access modes. use the '-R' option as well. to give all access to the group and remove access to all other users, a command like this should work:
Code:
chmod -R a-rwx g+rwx
if thats what you want.. otherwise let us know