When it is necessary to modify the permissions on a particular file or group of files this command is the one to use. It takes the form:
chmod <options> <mode> <files>
<mode> has the form: [ugoa...][[+-=][rwxXstugo...]...][,...]
<options>
Example:
chmod g-w ./*
Will remove the group write permissions from all the files in the current directory.
See also: chown, chgrp