5.8 chgrp: Changing a File's GroupThe chgrp command lets you change the group of a file. The behavior here mirrors that of chown . Under most modern versions of UNIX , you can change the group of a file if you are either one of the following users:
On older AT&T versions of UNIX , you may set any file you own to any group that you want. That is, you can "give away" files to other groups, the same as you can give away files to other users. Beware. The chgrp command has the form: chgrp [ -fRh ] group filelist The -f and -R options are interpreted the same as they are for the chmod and chown commands. The -h option is a bit different from that of chmod . Under chgrp , the option specifies that the group of the link itself is changed and not what the link points to. Other entries have the following meanings:
For example, to change the group of the file paper.tex to chem , you would type: % chgrp chem paper.tex % ls -l paper.tex -rw-r--r-- 1 kevin chem 59321 Jul 12 13:54 paper.tex % |
|