]>
Commit | Line | Data |
---|---|---|
1 | .\" Copyright (c) 1990, 1991, 1993, 1994 | |
2 | .\" The Regents of the University of California. All rights reserved. | |
3 | .\" | |
4 | .\" Redistribution and use in source and binary forms, with or without | |
5 | .\" modification, are permitted provided that the following conditions | |
6 | .\" are met: | |
7 | .\" 1. Redistributions of source code must retain the above copyright | |
8 | .\" notice, this list of conditions and the following disclaimer. | |
9 | .\" 2. Redistributions in binary form must reproduce the above copyright | |
10 | .\" notice, this list of conditions and the following disclaimer in the | |
11 | .\" documentation and/or other materials provided with the distribution. | |
12 | .\" 3. All advertising materials mentioning features or use of this software | |
13 | .\" must display the following acknowledgement: | |
14 | .\" This product includes software developed by the University of | |
15 | .\" California, Berkeley and its contributors. | |
16 | .\" 4. Neither the name of the University nor the names of its contributors | |
17 | .\" may be used to endorse or promote products derived from this software | |
18 | .\" without specific prior written permission. | |
19 | .\" | |
20 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
21 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
22 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
23 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
24 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
25 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
26 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
27 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
28 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
30 | .\" SUCH DAMAGE. | |
31 | .\" | |
32 | .\" @(#)chown.8 8.3 (Berkeley) 3/31/94 | |
33 | .\" $FreeBSD: src/usr.sbin/chown/chown.8,v 1.20 2002/07/14 14:42:43 charnier Exp $ | |
34 | .\" | |
35 | .Dd March 31, 1994 | |
36 | .Dt CHOWN 8 | |
37 | .Os | |
38 | .Sh NAME | |
39 | .Nm chown | |
40 | .Nd change file owner and group | |
41 | .Sh SYNOPSIS | |
42 | .Nm chown | |
43 | .Op Fl fhnv | |
44 | .Oo | |
45 | .Fl R | |
46 | .Op Fl H | Fl L | Fl P | |
47 | .Oc | |
48 | .Ar owner Ns Op : Ns Ar group | |
49 | .Ar | |
50 | .Nm chown | |
51 | .Op Fl fhnv | |
52 | .Oo | |
53 | .Fl R | |
54 | .Op Fl H | Fl L | Fl P | |
55 | .Oc | |
56 | .No : Ns Ar group | |
57 | .Ar | |
58 | .Sh DESCRIPTION | |
59 | The | |
60 | .Nm chown | |
61 | utility changes the user ID and/or the group ID of the specified files. | |
62 | Symbolic links named by arguments are silently left unchanged unless | |
63 | .Fl h | |
64 | is used. | |
65 | .Pp | |
66 | The options are as follows: | |
67 | .Bl -tag -width Ds | |
68 | .It Fl f | |
69 | Don't report any failure to change file owner or group, nor modify | |
70 | the exit status to reflect such failures. | |
71 | .It Fl H | |
72 | If the | |
73 | .Fl R | |
74 | option is specified, symbolic links on the command line are followed. | |
75 | (Symbolic links encountered in the tree traversal are not followed.) | |
76 | .It Fl h | |
77 | If the file is a symbolic link, change the user ID and/or the | |
78 | group ID of the link itself. | |
79 | .It Fl L | |
80 | If the | |
81 | .Fl R | |
82 | option is specified, all symbolic links are followed. | |
83 | .It Fl P | |
84 | If the | |
85 | .Fl R | |
86 | option is specified, no symbolic links are followed. | |
87 | Instead, the user and/or group ID of the link itself are modified. | |
88 | This is the default. Use | |
89 | .Fl h | |
90 | to change the user ID and/or the group of symbolic links. | |
91 | .It Fl R | |
92 | Change the user ID and/or the group ID for the file hierarchies rooted | |
93 | in the files instead of just the files themselves. | |
94 | .It Fl n | |
95 | Interpret user ID and group ID as numeric, avoiding name lookups. | |
96 | .It Fl v | |
97 | Cause | |
98 | .Nm chown | |
99 | to be verbose, showing files as the owner is modified. | |
100 | .El | |
101 | .Pp | |
102 | The | |
103 | .Fl H , | |
104 | .Fl L | |
105 | and | |
106 | .Fl P | |
107 | options are ignored unless the | |
108 | .Fl R | |
109 | option is specified. | |
110 | In addition, these options override each other and the | |
111 | command's actions are determined by the last one specified. | |
112 | .Pp | |
113 | The | |
114 | .Ar owner | |
115 | and | |
116 | .Ar group | |
117 | operands are both optional; | |
118 | however, at least one must be specified. | |
119 | If the | |
120 | .Ar group | |
121 | operand is specified, it must be preceded by a colon (``:'') character. | |
122 | .Pp | |
123 | The | |
124 | .Ar owner | |
125 | may be either a numeric user ID or a user name. | |
126 | If a user name is also a numeric user ID, the operand is used as a | |
127 | user name. | |
128 | The | |
129 | .Ar group | |
130 | may be either a numeric group ID or a group name. | |
131 | If a group name is also a numeric group ID, the operand is used as a | |
132 | group name. | |
133 | .Pp | |
134 | For obvious security reasons, | |
135 | the ownership of a file may only be altered by a super-user. | |
136 | Similarly, only a member of a group can change a file's group ID | |
137 | to that group. | |
138 | .Sh DIAGNOSTICS | |
139 | .Ex -std | |
140 | .Sh COMPATIBILITY | |
141 | Previous versions of the | |
142 | .Nm chown | |
143 | utility used the dot (``.'') character to distinguish the group name. | |
144 | This has been changed to be a colon (``:'') character, | |
145 | so that user and group names may contain the dot character. | |
146 | .Pp | |
147 | On previous versions of this system, | |
148 | symbolic links did not have owners. | |
149 | .Pp | |
150 | The | |
151 | .Fl v | |
152 | option is non-standard and its use in scripts is not recommended. | |
153 | .Sh LEGACY DESCRIPTION | |
154 | In legacy mode, the | |
155 | .Fl R | |
156 | and | |
157 | .Fl RP | |
158 | options do not change the user ID | |
159 | or the group ID of symbolic links. | |
160 | .Sh SEE ALSO | |
161 | .Xr chgrp 1 , | |
162 | .Xr find 1 , | |
163 | .Xr chown 2 , | |
164 | .Xr fts 3 , | |
165 | .Xr compat 5 , | |
166 | .Xr symlink 7 | |
167 | .Sh STANDARDS | |
168 | The | |
169 | .Nm chown | |
170 | utility is expected to be | |
171 | .St -p1003.2 | |
172 | compliant. | |
173 | .Sh HISTORY | |
174 | A | |
175 | .Nm chown | |
176 | utility appeared in | |
177 | .At v1 . |