]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - bin/chflags/chflags.1
This commit was generated by cvs2svn to compensate for changes in r137015,
[FreeBSD/FreeBSD.git] / bin / chflags / chflags.1
1 .\" Copyright (c) 1989, 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 .\"     @(#)chflags.1   8.4 (Berkeley) 5/2/95
32 .\" $FreeBSD$
33 .\"
34 .Dd March 24, 2003
35 .Dt CHFLAGS 1
36 .Os
37 .Sh NAME
38 .Nm chflags
39 .Nd change file flags
40 .Sh SYNOPSIS
41 .Nm
42 .Oo
43 .Fl R
44 .Op Fl H | Fl L | Fl P
45 .Oc
46 .Ar flags
47 .Ar
48 .Sh DESCRIPTION
49 The
50 .Nm
51 utility modifies the file flags of the listed files
52 as specified by the
53 .Ar flags
54 operand.
55 .Pp
56 The options are as follows:
57 .Bl -tag -width indent
58 .It Fl H
59 If the
60 .Fl R
61 option is specified, symbolic links on the command line are followed.
62 (Symbolic links encountered in the tree traversal are not followed.)
63 .It Fl L
64 If the
65 .Fl R
66 option is specified, all symbolic links are followed.
67 .It Fl P
68 If the
69 .Fl R
70 option is specified, no symbolic links are followed.
71 This is the default.
72 .It Fl R
73 Change the file flags for the file hierarchies rooted
74 in the files instead of just the files themselves.
75 .El
76 .Pp
77 The flags are specified as an octal number or a comma separated list
78 of keywords.
79 The following keywords are currently defined:
80 .Pp
81 .Bl -tag -offset indent -width ".Ar opaque"
82 .It Ar arch , archived
83 set the archived flag (super-user only)
84 .It Ar opaque
85 set the opaque flag (owner or super-user only)
86 .It Ar nodump
87 set the nodump flag (owner or super-user only)
88 .It Ar sappnd , sappend
89 set the system append-only flag (super-user only)
90 .It Ar schg , schange , simmutable
91 set the system immutable flag (super-user only)
92 .It Ar sunlnk , sunlink
93 set the system undeletable flag (super-user only)
94 .It Ar uappnd , uappend
95 set the user append-only flag (owner or super-user only)
96 .It Ar uchg , uchange , uimmutable
97 set the user immutable flag (owner or super-user only)
98 .It Ar uunlnk , uunlink
99 set the user undeletable flag (owner or super-user only)
100 .El
101 .Pp
102 Putting the letters
103 .Dq Ar no
104 before or removing the letters
105 .Dq Ar no
106 from a keyword causes the flag to be cleared.
107 For example:
108 .Pp
109 .Bl -tag -offset indent -width "nouchg" -compact
110 .It Ar nouchg
111 clear the user immutable flag (owner or super-user only)
112 .It Ar dump
113 clear the nodump flag (owner or super-user only)
114 .El
115 .Pp
116 Symbolic links do not have flags, so unless the
117 .Fl H
118 or
119 .Fl L
120 option is set,
121 .Nm
122 on a symbolic link always succeeds and has no effect.
123 The
124 .Fl H ,
125 .Fl L
126 and
127 .Fl P
128 options are ignored unless the
129 .Fl R
130 option is specified.
131 In addition, these options override each other and the
132 command's actions are determined by the last one specified.
133 .Pp
134 You can use "ls -lo" to see the flags of existing files.
135 .Sh DIAGNOSTICS
136 .Ex -std
137 .Sh SEE ALSO
138 .Xr ls 1 ,
139 .Xr chflags 2 ,
140 .Xr stat 2 ,
141 .Xr fts 3 ,
142 .Xr symlink 7
143 .Sh HISTORY
144 The
145 .Nm
146 command first appeared in
147 .Bx 4.4 .