]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - usr.bin/du/du.1
MFH (r238602): add -g (gigabyte) flag
[FreeBSD/stable/8.git] / usr.bin / du / du.1
1 .\" Copyright (c) 1990, 1993
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 .\"     @(#)du.1        8.2 (Berkeley) 4/1/94
33 .\" $FreeBSD$
34 .\"
35 .Dd July 18, 2012
36 .Dt DU 1
37 .Os
38 .Sh NAME
39 .Nm du
40 .Nd display disk usage statistics
41 .Sh SYNOPSIS
42 .Nm
43 .Op Fl Aclnx
44 .Op Fl H | L | P
45 .Op Fl g | h | k | m
46 .Op Fl a | s | d Ar depth
47 .Op Fl B Ar blocksize
48 .Op Fl I Ar mask
49 .Op Fl t Ar threshold
50 .Op Ar
51 .Sh DESCRIPTION
52 The
53 .Nm
54 utility displays the file system block usage for each file argument
55 and for each directory in the file hierarchy rooted in each directory
56 argument.
57 If no file is specified, the block usage of the hierarchy rooted in
58 the current directory is displayed.
59 .Pp
60 The options are as follows:
61 .Bl -tag -width indent
62 .It Fl A
63 Display the apparent size instead of the disk usage.
64 This can be helpful when operating on compressed volumes or sparse files.
65 .It Fl B Ar blocksize
66 Calculate block counts in
67 .Ar blocksize
68 byte blocks.
69 This is different from the
70 .Fl h, k, m
71 and
72 .Fl  g
73 options or setting
74 .Ev BLOCKSIZE
75 and gives an estimate of how much space the examined file hierarchy would
76 require on a filesystem with the given
77 .Ar blocksize .
78 Unless in
79 .Fl A
80 mode,
81 .Ar blocksize
82 is rounded up to the next multiple of 512.
83 .It Fl H
84 Symbolic links on the command line are followed, symbolic links in file
85 hierarchies are not followed.
86 .It Fl I Ar mask
87 Ignore files and directories matching the specified
88 .Ar mask .
89 .It Fl L
90 Symbolic links on the command line and in file hierarchies are followed.
91 .It Fl P
92 No symbolic links are followed.
93 This is the default.
94 .It Fl a
95 Display an entry for each file in a file hierarchy.
96 .It Fl c
97 Display a grand total.
98 .It Fl d Ar depth
99 Display an entry for all files and directories
100 .Ar depth
101 directories deep.
102 .It Fl g
103 Display block counts in 1073741824-byte (1 GiB) blocks.
104 .It Fl h
105 .Dq Human-readable
106 output.
107 Use unit suffixes: Byte, Kilobyte, Megabyte,
108 Gigabyte, Terabyte and Petabyte.
109 .It Fl k
110 Display block counts in 1024-byte (1 kiB) blocks.
111 .It Fl l
112 If a file has multiple hard links, count its size multiple times.
113 The default behavior of
114 .Nm
115 is to count files with multiple hard links only once.
116 When the
117 .Fl l
118 option is specified, the hard link checks are disabled, and these files
119 are counted (and displayed) as many times as they are found.
120 .It Fl m
121 Display block counts in 1048576-byte (1 MiB) blocks.
122 .It Fl n
123 Ignore files and directories with user
124 .Dq nodump
125 flag
126 .Pq Dv UF_NODUMP
127 set.
128 .It Fl r
129 Generate messages about directories that cannot be read, files
130 that cannot be opened, and so on.
131 This is the default case.
132 This option exists solely for conformance with
133 .St -xpg4 .
134 .It Fl s
135 Display an entry for each specified file.
136 (Equivalent to
137 .Fl d Li 0 )
138 .It Fl t Ar threshold
139 Display only entries for which size exceeds
140 .Ar threshold .
141 If
142 .Ar threshold
143 is negative, display only entries for which size is less than the absolute
144 value of
145 .Ar threshold .
146 .It Fl x
147 File system mount points are not traversed.
148 .El
149 .Pp
150 The
151 .Nm
152 utility counts the storage used by symbolic links and not the files they
153 reference unless the
154 .Fl H
155 or
156 .Fl L
157 option is specified.
158 If either the
159 .Fl H
160 or
161 .Fl L
162 option is specified, storage used by any symbolic links which are
163 followed is not counted (or displayed).
164 The
165 .Fl H ,
166 .Fl L
167 and
168 .Fl P
169 options override each other and the command's actions are determined
170 by the last one specified.
171 .Pp
172 The
173 .Fl h, k
174 and
175 .Fl m
176 options all override each other; the last one specified determines
177 the block counts used.
178 .Sh ENVIRONMENT
179 .Bl -tag -width BLOCKSIZE
180 .It Ev BLOCKSIZE
181 If the environment variable
182 .Ev BLOCKSIZE
183 is set, and the
184 .Fl h, k
185 or
186 .Fl m
187 options are not specified, the block counts will be displayed in units of
188 that block size.
189 If
190 .Ev BLOCKSIZE
191 is not set, and the
192 .Fl h, k
193 or
194 .Fl m
195 options are not specified, the block counts will be displayed in 512-byte
196 blocks.
197 .El
198 .Sh SEE ALSO
199 .Xr df 1 ,
200 .Xr chflags 2 ,
201 .Xr fts 3 ,
202 .Xr symlink 7 ,
203 .Xr quot 8
204 .Sh HISTORY
205 A
206 .Nm
207 command appeared in
208 .At v1 .