]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/chown/chgrp.1
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / chown / chgrp.1
1 .\" Copyright (c) 1983, 1990, 1993, 1994
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" the Institute of Electrical and Electronics Engineers, Inc.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 4. Neither the name of the University nor the names of its contributors
16 .\"    may be used to endorse or promote products derived from this software
17 .\"    without specific prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 .\" SUCH DAMAGE.
30 .\"
31 .\"     @(#)chgrp.1     8.3 (Berkeley) 3/31/94
32 .\" $FreeBSD$
33 .\"
34 .Dd February 21, 2010
35 .Dt CHGRP 1
36 .Os
37 .Sh NAME
38 .Nm chgrp
39 .Nd change group
40 .Sh SYNOPSIS
41 .Nm
42 .Op Fl fhvx
43 .Oo
44 .Fl R
45 .Op Fl H | Fl L | Fl P
46 .Oc
47 .Ar group
48 .Ar
49 .Sh DESCRIPTION
50 The
51 .Nm
52 utility sets the group ID of the file named by each
53 .Ar file
54 operand to the
55 .Ar group
56 ID specified by the group operand.
57 .Pp
58 The following options are available:
59 .Bl -tag -width indent
60 .It Fl H
61 If the
62 .Fl R
63 option is specified, symbolic links on the command line are followed.
64 (Symbolic links encountered in the tree traversal are not followed.)
65 .It Fl L
66 If the
67 .Fl R
68 option is specified, all symbolic links are followed.
69 .It Fl P
70 If the
71 .Fl R
72 option is specified, no symbolic links are followed.
73 This is the default.
74 .It Fl R
75 Change the group ID for the file hierarchies rooted
76 in the files instead of just the files themselves.
77 .It Fl f
78 The force option ignores errors, except for usage errors and does not
79 query about strange modes (unless the user does not have proper permissions).
80 .It Fl h
81 If the file is a symbolic link, the group ID of the link itself is changed
82 rather than the file that is pointed to.
83 .It Fl v
84 Cause
85 .Nm
86 to be verbose, showing files as the group is modified.
87 If the
88 .Fl v
89 flag is specified more than once,
90 .Nm
91 will print the filename, followed by the old and new numeric group ID.
92 .It Fl x
93 File system mount points are not traversed.
94 .El
95 .Pp
96 The
97 .Fl H ,
98 .Fl L
99 and
100 .Fl P
101 options are ignored unless the
102 .Fl R
103 option is specified.
104 In addition, these options override each other and the
105 command's actions are determined by the last one specified.
106 .Pp
107 The
108 .Ar group
109 operand can be either a group name from the group database,
110 or a numeric group ID.
111 If a group name is also a numeric group ID, the operand is used as a
112 group name.
113 .Pp
114 The user invoking
115 .Nm
116 must belong to the specified group and be the owner of the file,
117 or be the super-user.
118 .Sh FILES
119 .Bl -tag -width /etc/group -compact
120 .It Pa /etc/group
121 group ID file
122 .El
123 .Sh EXIT STATUS
124 .Ex -std
125 .Sh COMPATIBILITY
126 In previous versions of this system, symbolic links did not have groups.
127 .Pp
128 The
129 .Fl v
130 and
131 .Fl x
132 options are non-standard and their use in scripts is not recommended.
133 .Sh SEE ALSO
134 .Xr chown 2 ,
135 .Xr fts 3 ,
136 .Xr group 5 ,
137 .Xr passwd 5 ,
138 .Xr symlink 7 ,
139 .Xr chown 8
140 .Sh STANDARDS
141 The
142 .Nm
143 utility is expected to be
144 .St -p1003.2
145 compatible.