*** empty log message ***
[findutils.git] / find / find.1
blobd6280d4046a61af7d9c8630b55d3b8d8ba078a19
1 .TH FIND 1L \" -*- nroff -*-
2 .SH NAME
3 find \- search for files in a directory hierarchy
4 .SH SYNOPSIS
5 .B find
6 [path...] [expression]
7 .SH DESCRIPTION
8 This manual page
9 documents the GNU version of
10 .BR find .
11 .B find
12 searches the directory tree rooted at each given file name by
13 evaluating the given expression from left to right, according to the
14 rules of precedence (see section OPERATORS), until the outcome is
15 known (the left hand side is false for \fIand\fR operations, true for
16 \fIor\fR), at which point
17 .B find
18 moves on to the next file name.
19 .PP
20 The first argument that begins with `\-', `(', `)', `,', or `!' is taken
21 to be the beginning of the expression; any arguments before it are
22 paths to search, and any arguments after it are the rest of the
23 expression.  If no paths are given, the current directory is used.  If
24 no expression is given, the expression `\-print' is used.
25 .PP
26 .B find
27 exits with status 0 if all files are processed successfully, greater
28 than 0 if errors occur.
29 .SH EXPRESSIONS
31 The expression is made up of options (which affect overall operation
32 rather than the processing of a specific file, and always return true),
33 tests (which return a true or false value), and actions (which have side
34 effects and return a true or false value), all separated by operators.
35 \-and is assumed where the operator is omitted.  If the expression contains
36 no actions other than \-prune, \-print is performed on all files
37 for which the expression is true.
38 .SS OPTIONS
40 All options always return true.  They always take effect, rather than
41 being processed only when their place in the expression is reached.
42 Therefore, for clarity, it is best to place them at the beginning of
43 the expression.
44 .IP \-daystart
45 Measure times (for \-amin, \-atime, \-cmin, \-ctime, \-mmin, and \-mtime)
46 from the beginning of today rather than from 24 hours ago.
47 .IP \-depth
48 Process each directory's contents before the directory itself.
49 .IP \-follow
50 Dereference symbolic links.  Implies \-noleaf.
51 .IP "\-help, \-\-help"
52 Print a summary of the command-line usage of
53 .B find
54 and exit.
55 .IP "\-maxdepth \fIlevels\fR"
56 Descend at most \fIlevels\fR (a non-negative integer) levels of
57 directories below the command line arguments.  `\-maxdepth 0' means
58 only apply the tests and actions to the command line arguments.
59 .IP "\-mindepth \fIlevels\fR"
60 Do not apply any tests or actions at levels less than \fIlevels\fR (a
61 non-negative integer).  `\-mindepth 1' means process all files except
62 the command line arguments.
63 .IP \-mount
64 Don't descend directories on other filesystems.  An alternate name for
65 \-xdev, for compatibility with some other versions of
66 .BR find .
67 .IP "\-noleaf"
68 Do not optimize by assuming that directories contain 2 fewer
69 subdirectories than their hard link count.  This option is needed when
70 searching filesystems that do not follow the Unix directory-link
71 convention, such as CD-ROM or MS-DOS filesystems or AFS volume mount
72 points.  Each directory on a normal Unix filesystem has at least 2
73 hard links: its name and its `.'  entry.  Additionally, its
74 subdirectories (if any) each have a `..'  entry linked to that
75 directory.  When
76 .B find
77 is examining a directory, after it has statted 2 fewer subdirectories
78 than the directory's link count, it knows that the rest of the entries
79 in the directory are non-directories (`leaf' files in the directory
80 tree).  If only the files' names need to be examined, there is no need
81 to stat them; this gives a significant increase in search speed.
82 .IP "\-version, \-\-version"
83 Print the \fBfind\fR version number and exit.
84 .IP \-xdev
85 Don't descend directories on other filesystems.
86 .SS TESTS
88 Numeric arguments can be specified as
89 .IP \fI+n\fP
90 for greater than
91 .IR n ,
92 .IP \fI\-n\fP
93 for less than
94 .IR n ,
95 .IP \fIn\fP
96 for exactly
97 .IR n .
98 .IP "\-amin \fIn\fR"
99 File was last accessed \fIn\fR minutes ago.
100 .IP "\-anewer \fIfile\fR"
101 File was last accessed more recently than \fIfile\fR was modified.
102 \-anewer is affected by \-follow only if \-follow comes before
103 \-anewer on the command line.
104 .IP "\-atime \fIn\fR"
105 File was last accessed \fIn\fR*24 hours ago.
106 .IP "\-cmin \fIn\fR"
107 File's status was last changed \fIn\fR minutes ago.
108 .IP "\-cnewer \fIfile\fR"
109 File's status was last changed more recently than \fIfile\fR was modified.
110 \-cnewer is affected by \-follow only if \-follow comes before
111 \-cnewer on the command line.
112 .IP "\-ctime \fIn\fR"
113 File's status was last changed \fIn\fR*24 hours ago.
114 .IP \-empty
115 File is empty and is either a regular file or a directory.
116 .IP \-false
117 Always false.
118 .IP "\-fstype \fItype\fR"
119 File is on a filesystem of type \fItype\fR.  The valid filesystem
120 types vary among different versions of Unix; an incomplete list of
121 filesystem types that are accepted on some version of Unix or another
122 is: ufs, 4.2, 4.3, nfs, tmp, mfs, S51K, S52K.  You can use \-printf
123 with the %F directive to see the types of your filesystems.
124 .IP "\-gid \fIn\fR"
125 File's numeric group ID is \fIn\fR.
126 .IP "\-group \fIgname\fR"
127 File belongs to group \fIgname\fR (numeric group ID allowed).
128 .IP "\-ilname \fIpattern\fR"
129 Like \-lname, but the match is case insensitive.
130 .IP "\-iname \fIpattern\fR"
131 Like \-name, but the match is case insensitive.  For example, the
132 patterns `fo*' and `F??' match the file names `Foo', `FOO', `foo',
133 `fOo', etc.
134 .IP "\-inum \fIn\fR"
135 File has inode number \fIn\fR.
136 .IP "\-ipath \fIpattern\fR"
137 Like \-path, but the match is case insensitive.
138 .IP "\-iregex \fIpattern\fR"
139 Like \-regex, but the match is case insensitive.
140 .IP "\-links \fIn\fR"
141 File has \fIn\fR links.
142 .IP "\-lname \fIpattern\fR"
143 File is a symbolic link whose contents match shell pattern
144 \fIpattern\fR.  The metacharacters do not treat `/' or `.' specially.
145 .IP "\-mmin \fIn\fR"
146 File's data was last modified \fIn\fR minutes ago.
147 .IP "\-mtime \fIn\fR"
148 File's data was last modified \fIn\fR*24 hours ago.
149 .IP "\-name \fIpattern\fR"
150 Base of file name (the path with the leading directories removed)
151 matches shell pattern \fIpattern\fR.  The metacharacters (`*', `?',
152 and `[]') do not match a `.' at the start of the base name.  To ignore
153 a directory and the files under it, use \-prune; see an example in the
154 description of \-path.
155 .IP "\-newer \fIfile\fR"
156 File was modified more recently than \fIfile\fR.
157 \-newer is affected by \-follow only if \-follow comes before
158 \-newer on the command line.
159 .IP \-nouser
160 No user corresponds to file's numeric user ID.
161 .IP \-nogroup
162 No group corresponds to file's numeric group ID.
163 .IP "\-path \fIpattern\fR"
164 File name matches shell pattern \fIpattern\fR.  The metacharacters do
165 not treat `/' or `.' specially; so, for example,
167 .in +1i
168 find . \-path './sr*sc'
170 .in -1i
171 will print an entry for a directory called './src/misc' (if one
172 exists).  To ignore a whole directory tree, use \-prune rather than
173 checking every file in the tree.  For example, to skip the
174 directory `src/emacs' and all files and directories under it, and
175 print the names of the other files found, do something like this:
177 .in +1i
178 find . \-path './src/emacs' -prune -o -print
180 .in -1i
181 .IP "\-perm \fImode\fR"
182 File's permission bits are exactly \fImode\fR (octal or symbolic).
183 Symbolic modes use mode 0 as a point of departure.
184 .IP "\-perm \-\fImode\fR"
185 All of the permission bits \fImode\fR are set for the file.
186 .IP "\-perm +\fImode\fR"
187 Any of the permission bits \fImode\fR are set for the file.
188 .IP "\-regex \fIpattern\fR"
189 File name matches regular expression \fIpattern\fR.  This is a match
190 on the whole path, not a search.  For example, to match a file named
191 `./fubar3', you can use the regular expression `.*bar.' or `.*b.*3',
192 but not `b.*r3'.
193 .IP "\-size \fIn\fR[bckw]"
194 File uses \fIn\fP units of space.  The units are 512-byte blocks by
195 default or if `b' follows \fIn\fP, bytes if `c' follows \fIn\fP,
196 kilobytes if `k' follows \fIn\fP, or 2-byte words if `w' follows \fIn\fP.
197 The size does not count indirect blocks, but it does count blocks in
198 sparse files that are not actually allocated.
199 .IP \-true
200 Always true.
201 .IP "\-type \fIc\fR"
202 File is of type \fIc\fR:
204 .IP b
205 block (buffered) special
206 .IP c
207 character (unbuffered) special
208 .IP d
209 directory
210 .IP p
211 named pipe (FIFO)
212 .IP f
213 regular file
214 .IP l
215 symbolic link
216 .IP s
217 socket
219 .IP "\-uid \fIn\fR"
220 File's numeric user ID is \fIn\fR.
221 .IP "\-used \fIn\fR"
222 File was last accessed \fIn\fR days after its status was last changed.
223 .IP "\-user \fIuname\fR"
224 File is owned by user \fIuname\fR (numeric user ID allowed).
225 .IP "\-xtype \fIc\fR"
226 The same as \-type unless the file is a symbolic link.  For symbolic
227 links: if \-follow has not been given, true if the file is a link to a
228 file of type \fIc\fR; if \-follow has been given, true if \fIc\fR is
229 `l'.  In other words, for symbolic links, \-xtype checks the type of
230 the file that \-type does not check.
231 .SS ACTIONS
232 .IP "\-exec \fIcommand\fR ;"
233 Execute \fIcommand\fR; true if 0 status is returned.  All following
234 arguments to
235 .B find
236 are taken to be arguments to the command until an argument consisting
237 of `;' is encountered.  The string `{}' is replaced by the current
238 file name being processed everywhere it occurs in the arguments to the
239 command, not just in arguments where it is alone, as in some versions
241 .BR find .
242 Both of these constructions might need to be escaped (with a `\e') or
243 quoted to protect them from expansion by the shell.  The command is
244 executed in the starting directory.
245 .IP "\-fls \fIfile\fR"
246 True; like \-ls but write to \fIfile\fR like \-fprint.
247 .IP "\-fprint \fIfile\fR"
248 True; print the full file name into file \fIfile\fR.  If \fIfile\fR
249 does not exist when \fBfind\fR is run, it is created; if it does
250 exist, it is truncated.  The file names ``/dev/stdout'' and
251 ``/dev/stderr'' are handled specially; they refer to the standard
252 output and standard error output, respectively.
253 .IP "\-fprint0 \fIfile\fR"
254 True; like \-print0 but write to \fIfile\fR like \-fprint.
255 .IP "\-fprintf \fIfile\fR \fIformat\fR"
256 True; like \-printf but write to \fIfile\fR like \-fprint.
257 .IP "\-ok \fIcommand\fR ;"
258 Like \-exec but ask the user first (on the standard input); if the
259 response does not start with `y' or `Y', do not run the command, and
260 return false.
261 .IP \-print
262 True; print the full file name on the standard output, followed by a newline.
263 .IP \-print0
264 True; print the full file name on the standard output, followed by a
265 null character.  This allows file names that contain newlines to be
266 correctly interpreted by programs that process the \fBfind\fR output.
267 .IP "\-printf \fIformat\fR"
268 True; print \fIformat\fR on the standard output, interpreting `\e'
269 escapes and `%' directives.  Field widths and precisions can be
270 specified as with the `printf' C function.  Unlike \-print, \-printf
271 does not add a newline at the end of the string.  The escapes and
272 directives are:
274 .IP \ea
275 Alarm bell.
276 .IP \eb
277 Backspace.
278 .IP \ec
279 Stop printing from this format immediately and flush the output.
280 .IP \ef
281 Form feed.
282 .IP \en
283 Newline.
284 .IP \er
285 Carriage return.
286 .IP \et
287 Horizontal tab.
288 .IP \ev
289 Vertical tab.
290 .IP \e\e
291 A literal backslash (`\e').
293 A `\e' character followed by any other character is treated as an
294 ordinary character, so they both are printed.
295 .IP %%
296 A literal percent sign.
297 .IP %a
298 File's last access time in the format returned by the C `ctime' function.
299 .IP %A\fIk\fP
300 File's last access time in the format specified by \fIk\fR, which is
301 either `@' or a directive for the C `strftime' function.  The possible
302 values for \fIk\fR are listed below; some of them might not be
303 available on all systems, due to differences in `strftime' between
304 systems.
306 .IP @
307 seconds since Jan. 1, 1970, 00:00 GMT.
309 Time fields:
310 .IP H
311 hour (00..23)
312 .IP I
313 hour (01..12)
314 .IP k
315 hour ( 0..23)
316 .IP l
317 hour ( 1..12)
318 .IP M
319 minute (00..59)
320 .IP p
321 locale's AM or PM
322 .IP r
323 time, 12-hour (hh:mm:ss [AP]M)
324 .IP S
325 second (00..61)
326 .IP T
327 time, 24-hour (hh:mm:ss)
328 .IP X
329 locale's time representation (H:M:S)
330 .IP Z
331 time zone (e.g., EDT), or nothing if no time zone is determinable
333 Date fields:
334 .IP a
335 locale's abbreviated weekday name (Sun..Sat)
336 .IP A
337 locale's full weekday name, variable length (Sunday..Saturday)
338 .IP b
339 locale's abbreviated month name (Jan..Dec)
340 .IP B
341 locale's full month name, variable length (January..December)
342 .IP c
343 locale's date and time (Sat Nov 04 12:02:33 EST 1989)
344 .IP d
345 day of month (01..31)
346 .IP D
347 date (mm/dd/yy)
348 .IP h
349 same as b
350 .IP j
351 day of year (001..366)
352 .IP m
353 month (01..12)
354 .IP U
355 week number of year with Sunday as first day of week (00..53)
356 .IP w
357 day of week (0..6)
358 .IP W
359 week number of year with Monday as first day of week (00..53)
360 .IP x
361 locale's date representation (mm/dd/yy)
362 .IP y
363 last two digits of year (00..99)
364 .IP Y
365 year (1970...)
367 .IP %b
368 File's size in 512-byte blocks (rounded up).
369 .IP %c
370 File's last status change time in the format returned by the C `ctime'
371 function.
372 .IP %C\fIk\fP
373 File's last status change time in the format specified by \fIk\fR,
374 which is the same as for %A.
375 .IP %d
376 File's depth in the directory tree; 0 means the file is a command line
377 argument.
378 .IP %f
379 File's name with any leading directories removed (only the last element).
380 .IP %F
381 Type of the filesystem the file is on; this value can be used for
382 \-fstype.
383 .IP %g
384 File's group name, or numeric group ID if the group has no name.
385 .IP %G
386 File's numeric group ID.
387 .IP %h
388 Leading directories of file's name (all but the last element).
389 .IP %H
390 Command line argument under which file was found.
391 .IP %i
392 File's inode number (in decimal).
393 .IP %k
394 File's size in 1K blocks (rounded up).
395 .IP %l
396 Object of symbolic link (empty string if file is not a symbolic link).
397 .IP %m
398 File's permission bits (in octal).
399 .IP %n
400 Number of hard links to file.
401 .IP %p
402 File's name.
403 .IP %P
404 File's name with the name of the command line argument under which
405 it was found removed.
406 .IP %s
407 File's size in bytes.
408 .IP %t
409 File's last modification time in the format returned by the C `ctime'
410 function.
411 .IP %T\fIk\fP
412 File's last modification time in the format specified by \fIk\fR, 
413 which is the same as for %A.
414 .IP %u
415 File's user name, or numeric user ID if the user has no name.
416 .IP %U
417 File's numeric user ID.
419 A `%' character followed by any other character is discarded (but the
420 other character is printed).
422 .IP \-prune
423 If \-depth is not given, true; do not descend the current directory.
425 If \-depth is given, false; no effect.
426 .IP \-ls
427 True; list current file in `ls \-dils' format on standard output.
428 The block counts are of 1K blocks, unless the environment variable
429 POSIXLY_CORRECT is set, in which case 512-byte blocks are used.
430 .SS OPERATORS
432 Listed in order of decreasing precedence:
433 .IP "( \fIexpr\fR )"
434 Force precedence.
435 .IP "! \fIexpr\fR"
436 True if \fIexpr\fR is false.
437 .IP "\-not \fIexpr\fR"
438 Same as ! \fIexpr\fR.
439 .IP "\fIexpr1 expr2\fR"
440 And (implied); \fIexpr2\fR is not evaluated if \fIexpr1\fR is false.
441 .IP "\fIexpr1\fR \-a \fIexpr2\fR"
442 Same as \fIexpr1 expr2\fR.
443 .IP "\fIexpr1\fR \-and \fIexpr2\fR"
444 Same as \fIexpr1 expr2\fR.
445 .IP "\fIexpr1\fR \-o \fIexpr2\fR"
446 Or; \fIexpr2\fR is not evaluated if \fIexpr1\fR is true.
447 .IP "\fIexpr1\fR \-or \fIexpr2\fR"
448 Same as \fIexpr1\fR \-o \fIexpr2\fR.
449 .IP "\fIexpr1\fR , \fIexpr2\fR"
450 List; both \fIexpr1\fR and \fIexpr2\fR are always evaluated.
451 The value of \fIexpr1\fR is discarded; the value of the list is the
452 value of \fIexpr2\fR.
453 .SH "SEE ALSO"
454 \fBlocate\fP(1L), \fBlocatedb\fP(5L), \fBupdatedb\fP(1L), \fBxargs\fP(1L)
455 \fBFinding Files\fP (on-line in Info, or printed)