xref: /minix/sbin/chown/chgrp.1 (revision 0a6a1f1d)
1.\" Copyright (c) 1983, 1990, 1993, 1994, 2003
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.\" 3. 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.\"     from: @(#)chgrp.1	8.3 (Berkeley) 3/31/94
32.\"	$NetBSD: chgrp.1,v 1.6 2013/12/17 09:54:08 apb Exp $
33.\"
34.Dd October 22, 2012
35.Dt CHGRP 1
36.Os
37.Sh NAME
38.Nm chgrp
39.Nd change group
40.Sh SYNOPSIS
41.Nm
42.Oo
43.Fl R
44.Op Fl H | Fl L | Fl P
45.Oc
46.Op Fl fhv
47.Ar group
48.Ar
49.Nm
50.Oo
51.Fl R
52.Op Fl H | Fl L | Fl P
53.Oc
54.Op Fl fhv
55.Fl Fl reference=rfile
56.Ar
57.Sh DESCRIPTION
58The
59.Nm
60utility sets the group ID of the file named by each
61.Ar file
62operand to the
63.Ar group
64ID specified by the group operand,
65or to the group of the given
66.Ar rfile ,
67specified by the
68.Fl Fl reference
69argument.
70.Pp
71Options:
72.Bl -tag -width Ds
73.It Fl H
74If the
75.Fl R
76option is specified, symbolic links on the command line are followed.
77(Symbolic links encountered in the tree traversal are not followed.)
78.It Fl L
79If the
80.Fl R
81option is specified, all symbolic links are followed.
82.It Fl P
83If the
84.Fl R
85option is specified, no symbolic links are followed.
86.It Fl R
87Change the group ID for the file hierarchies rooted
88in the files instead of just the files themselves.
89.It Fl f
90The force option ignores errors, except for usage errors and doesn't
91query about strange modes (unless the user does not have proper permissions).
92.It Fl h
93If
94.Ar file
95is a symbolic link, the group of the link is changed.
96.It Fl v
97Cause
98.Nm
99to be verbose, showing files as they are processed.
100.El
101.Pp
102If
103.Fl h
104is not given, unless the
105.Fl H
106or
107.Fl L
108option is set,
109.Nm
110on a symbolic link always succeeds and has no effect.
111The
112.Fl H ,
113.Fl L
114and
115.Fl P
116options are ignored unless the
117.Fl R
118option is specified.
119In addition, these options override each other and the
120command's actions are determined by the last one specified.
121The default is as if the
122.Fl P
123option had been specified.
124.Pp
125The
126.Ar group
127operand can be either a group name from the group database,
128or a numeric group ID.
129Since it is valid to have a group name that is numeric (and
130doesn't have the numeric ID that matches its name) the name lookup
131is always done first.
132Preceding the ID with a ``#'' character will force it to be taken
133as a number.
134.Pp
135The user invoking
136.Nm
137must belong to the specified group and be the owner of the file,
138or be the super-user.
139.Pp
140Unless invoked by the super-user,
141.Nm
142clears the set-user-id and set-group-id bits on a file to prevent
143accidental or mischievous creation of set-user-id or set-group-id
144programs.
145.Pp
146The
147.Nm
148utility exits 0 on success, and \*[Gt]0 if an error occurs.
149.Sh FILES
150.Bl -tag -width /etc/group -compact
151.It Pa /etc/group
152Group ID file
153.El
154.Sh SEE ALSO
155.Xr chown 2 ,
156.Xr lchown 2 ,
157.Xr fts 3 ,
158.Xr group 5 ,
159.Xr passwd 5 ,
160.Xr symlink 7 ,
161.Xr chown 8
162.Sh STANDARDS
163The
164.Nm
165utility is expected to be POSIX 1003.2 compatible.
166.Pp
167The
168.Fl v
169option and the use of ``#'' to force a numeric group ID
170are extensions to
171.St -p1003.2 .
172