The chgrp utility will set the group ID of the file named by each file operand to the group ID specified by the group operand.
For each file operand, it will perform actions equivalent to the chown(2) function, called with the following arguments:
- The file operand will be used as the path argument.
- The user ID of the file will be used as the owner argument.
- The specified group ID will be used as the group argument.
Unless chgrp is invoked by a process with appropriate privileges, the set-user-ID and set-group-ID bits of a regular file will be cleared upon successful completion; the set-user-ID
and set-group-ID bits of other file types may be cleared.
The operating system has a configuration option _POSIX_CHOWN_RESTRICTED, to restrict ownership changes. When this option is in effect, the owner of the file
may change the group of the file only to a group to which the owner belongs. Only the super-user can arbitrarily change owner IDs, whether or not this option is in effect. To set this configuration option,
include the following line in /etc/system:
To disable this option, include the following line in /etc/system:
_POSIX_CHOWN_RESTRICTED is enabled by default. See system(4) and fpathconf(2).
|