Invoke gl_INCLUDED_REGEX directly to ensure successful compilation on
[findutils.git] / find / find.1
blob0f197694880f1ca4620c4f7e08be6893752ecc93
1 .TH FIND 1 \" -*- nroff -*-
2 .SH NAME
3 find \- search for files in a directory hierarchy
4 .SH SYNOPSIS
5 .B find 
6 [\-H] [\-L] [\-P] [path...] [expression]
7 .SH DESCRIPTION
8 This manual page
9 documents the GNU version of
10 .BR find .
11 GNU
12 .B find
13 searches the directory tree rooted at each given file name by
14 evaluating the given expression from left to right, according to the
15 rules of precedence (see section OPERATORS), until the outcome is
16 known (the left hand side is false for \fIand\fR operations, true for
17 \fIor\fR), at which point
18 .B find
19 moves on to the next file name.
20 .PP
21 The `\-H', `\-L' and `\-P' options control the treatment of symbolic
22 links.  Command-line arguments following these are taken to be names
23 of files or directories to be examined, up to the first argument that
24 begins with `\-', `(', `)', `,', or `!'.  That argument and any
25 following arguments are taken to be the expression describing what is
26 to be searched for.  If no paths are given, the current directory is
27 used.  If no expression is given, the expression `\-print' is used
28 (but you should probably consider using `\-print0' instead, anyway).
29 .PP
30 This manual page talks about `options' within the expression list.
31 These options control the behaviour of 
32 .B find
33 but are specified immediately after the last path name.  The two
34 `real' options `\-H', `\-L' and `\-P' must appear before the first
35 path name, if at all.
36 .SH OPTIONS
37 .IP \-P
38 Never follow symbolic links.  This is the default behaviour.  When 
39 .B find
40 examines or prints information a file, and the file is a symbolic
41 link, the information used shall be taken from the properties of the
42 symbolic link itself.  
44 .IP \-L
45 Follow symbolic links.  When 
46 .B find
47 examines or prints information about files, the information used shall
48 be taken from the properties of the file to which the link points, not
49 from the link itself (unless it is a broken symbolic link or 
50 .B find
51 is unable to examine the file to which the link points).  Use of this
52 option implies \-noleaf.  If you later use the \-P option, \-noleaf
53 will still be in effect.
55 .IP \-H
56 Do not follow symbolic links, except those appearing on the command
57 line.  When
58 .B find
59 examines or prints information about files, the information used 
60 shall be taken from the properties of the symbolic link itself.   The
61 only exception to this behaviour is when a file specified on the
62 command line is a symbolic link, and the link can be resolved.  For
63 that situation, the information used is taken from whatever the link
64 points to (that is, the link is followed).  The information about the
65 link itself is used as a fallback if the file pointed to by the
66 symbolic link cannot be examined.
68 When the \-H option is in effect, the \-type predicate will always
69 match against the type of the file that a symbolic link points to
70 rather than the link itself (unless the symbolic link is broken).
71 Using \-H causes the \-lname and \-ilname predicates always to return
72 false.
74 If more than one of \-H, \-L and \-P are both specified, each
75 overrides the others; the last one appearing on the command line takes
76 effect.  Since it is the default, the \-P option should be considered
77 to be in effect unless either \-H or \-L is specified.
79 GNU 
80 .B find
81 frequently stats files during the processing of the command line
82 itself, before any searching has begun.  These options also affect how
83 those arguments are processed.  Specifically, there are a number of
84 tests that compare files listed on the command line against a file we
85 are currently considering.  In each case, the file specified on the
86 command line will have been examined and some of its properties will
87 have been saved.  If the named file is in fact a symbolic link, and
88 the \-P option is in effect (or if neither \-H nor \-L were
89 specified), the information used for the comparison will be taken from
90 the properties of the symbolic link.  Otherwise, it will be taken from
91 the properties of the file the link points to.  If
92 .B find 
93 cannot follow the link (for example because it has insufficient
94 privileges or the link points to a nonexistent file) the properties of
95 the link itself will be used.
97 When the \-H or \-L options are in effect, any symbolic links listed
98 as the argument of \-newer will be dereferenced, and the timestamp
99 will be taken from the file to which the symbolic link points.  The
100 same consideration applies to \-anewer and \-cnewer.
102 Similarly, when \-H or \-L is in effect, the \-type predicate will
103 always match against the type of the file that a symbolic link points
104 to rather than the link itself (unless the link is broken or cannot be
105 dereferenced).  Using \-H or \-L causes the \-lname and \-ilname
106 predicates always to return false (again, except in the case of broken
107 links).
109 The \-follow option has a similar effect to \-L, though it takes
110 effect at the point where it appears (that is, if \-L is not used but
111 \-follow is, any symbolic links appearing after it on the command line
112 will be dereferenced).
115 .SH EXPRESSIONS
116 The expression is made up of options (which affect overall operation
117 rather than the processing of a specific file, and always return true),
118 tests (which return a true or false value), and actions (which have side
119 effects and return a true or false value), all separated by operators.
120 \-and is assumed where the operator is omitted.  If the expression contains
121 no actions other than \-prune, \-print is performed on all files
122 for which the expression is true.
123 .SS OPTIONS
125 All options always return true.  Except for \-follow and \-daystart,
126 they always take effect, rather than being processed only when their
127 place in the expression is reached.  Therefore, for clarity, it is
128 best to place them at the beginning of the expression.  A warning is
129 issued if you don't do this.
130 .IP \-daystart
131 Measure times (for \-amin, \-atime, \-cmin, \-ctime, \-mmin, and \-mtime)
132 from the beginning of today rather than from 24 hours ago.  This
133 option only affects tests which appear later on the command line.
134 .IP \-depth
135 Process each directory's contents before the directory itself.
136 .IP \-d
137 A synonym for \-depth, for compatibility with FreeBSD, NetBSD, MacOS X and OpenBSD.
138 .IP \-follow
139 Deprecated; use the \-L option instead.  Dereference symbolic links.
140 Implies \-noleaf.  Unless the \-H or \-L option has been specified,
141 the position of the \-follow option changes the behaviour of the
142 \-newer predicate; any files listed as the argument of \-newer will be
143 dereferenced if they are symbolic links.  The same consideration
144 applies to \-anewer and \-cnewer.  Similarly, the \-type predicate
145 will always match against the type of the file that a symbolic link
146 points to rather than the link itself.  Using \-follow causes the
147 \-lname and \-ilname predicates always to return false.
148 .IP "\-help, \-\-help"
149 Print a summary of the command-line usage of
150 .B find
151 and exit.
152 .IP \-ignore_readdir_race
153 Normally, \fBfind\fR will emit an error message when it fails to stat a file.
154 If you give this option and a file is deleted between the time \fBfind\fR 
155 reads the name of the file from the directory and the time it tries to stat 
156 the file, nno error message will be issued.    This also applies to files
157 or directories whose names are given on the command line.  This option takes
158 effect at the time the command line is read, which means that you cannot search
159 one part of the filesystem with this option on and part of it with this option
160 off (if you need to do that, you will need to issue two \fBfind\fR commands
161 instead, one with the option and one without it).
162 .IP "\-maxdepth \fIlevels\fR"
163 Descend at most \fIlevels\fR (a non-negative integer) levels of
164 directories below the command line arguments.  `\-maxdepth 0' means
165 only apply the tests and actions to the command line arguments.
166 .IP "\-mindepth \fIlevels\fR"
167 Do not apply any tests or actions at levels less than \fIlevels\fR (a
168 non-negative integer).  `\-mindepth 1' means process all files except
169 the command line arguments.
170 .IP \-mount
171 Don't descend directories on other filesystems.  An alternate name for
172 \-xdev, for compatibility with some other versions of
173 .BR find .
174 .IP \-noignore_readdir_race
175 Turns off the effect of \-ignore_readdir_race. 
176 .IP "\-noleaf"
177 Do not optimize by assuming that directories contain 2 fewer
178 subdirectories than their hard link count.  This option is needed when
179 searching filesystems that do not follow the Unix directory-link
180 convention, such as CD-ROM or MS-DOS filesystems or AFS volume mount
181 points.  Each directory on a normal Unix filesystem has at least 2
182 hard links: its name and its `.'  entry.  Additionally, its
183 subdirectories (if any) each have a `..'  entry linked to that
184 directory.  When
185 .B find
186 is examining a directory, after it has statted 2 fewer subdirectories
187 than the directory's link count, it knows that the rest of the entries
188 in the directory are non-directories (`leaf' files in the directory
189 tree).  If only the files' names need to be examined, there is no need
190 to stat them; this gives a significant increase in search speed.
191 .IP "\-version, \-\-version"
192 Print the \fBfind\fR version number and exit.
193 .IP "\-warn, \-nowarn"
194 Turn warning messages on or off.  These warnings apply only to the
195 command line usage, not to any conditions that 
196 .B find 
197 might encounter when it searches directories.  The default behaviour
198 corresponds to \-warn if standard input is a tty, and to \-nowarn
199 otherwise.
200 .IP \-xdev
201 Don't descend directories on other filesystems.
203 .SS TESTS
205 Numeric arguments can be specified as
206 .IP \fI+n\fP
207 for greater than
208 .IR n ,
209 .IP \fI\-n\fP
210 for less than
211 .IR n ,
212 .IP \fIn\fP
213 for exactly
214 .IR n .
215 .IP "\-amin \fIn\fR"
216 File was last accessed \fIn\fR minutes ago.
217 .IP "\-anewer \fIfile\fR"
218 File was last accessed more recently than \fIfile\fR was modified.  If
219 \fIfile\fR is a symbolic link and the \-H option or the \-L option is
220 in effect, the access time of the file it points to is always
221 used.
222 .IP "\-atime \fIn\fR"
223 File was last accessed \fIn\fR*24 hours ago.  
224 When find figures out how many 24-hour preiods ago the file 
225 was last accessed, any fractional part is ignored, so to match 
226 .B \-atime 
227 .BR +1 ,
228 a file has to have been modified at least 
229 .I two
230 days ago.
231 .IP "\-cmin \fIn\fR"
232 File's status was last changed \fIn\fR minutes ago.
233 .IP "\-cnewer \fIfile\fR"
234 File's status was last changed more recently than \fIfile\fR was
235 modified.  If \fIfile\fR is a symbolic link and the \-H option or the
236 \-L option is in effect, the status-change time of the file it points
237 to is always used.
239 .IP "\-ctime \fIn\fR"
240 File's status was last changed \fIn\fR*24 hours ago.
241 See the comments for 
242 .B \-atime 
243 to understand how rounding affects the interpretation of file status
244 change times.
245 .IP \-empty
246 File is empty and is either a regular file or a directory.
247 .IP \-false
248 Always false.
249 .IP "\-fstype \fItype\fR"
250 File is on a filesystem of type \fItype\fR.  The valid filesystem
251 types vary among different versions of Unix; an incomplete list of
252 filesystem types that are accepted on some version of Unix or another
253 is: ufs, 4.2, 4.3, nfs, tmp, mfs, S51K, S52K.  You can use \-printf
254 with the %F directive to see the types of your filesystems.
255 .IP "\-gid \fIn\fR"
256 File's numeric group ID is \fIn\fR.
257 .IP "\-group \fIgname\fR"
258 File belongs to group \fIgname\fR (numeric group ID allowed).
259 .IP "\-ilname \fIpattern\fR"
260 Like \-lname, but the match is case insensitive.
261 If the \-L option or the \-follow option is in effect, this test 
262 returns false unless the symbolic link is broken.
263 .IP "\-iname \fIpattern\fR"
264 Like \-name, but the match is case insensitive.  For example, the
265 patterns `fo*' and `F??' match the file names `Foo', `FOO', `foo',
266 `fOo', etc.   In these patterns, unlike filename expansion by the
267 shell, an initial '.' can be matched by '*'.  That is, 
268 .B find \-name *bar 
269 will match the file `.foobar'.
271 .IP "\-inum \fIn\fR"
272 File has inode number \fIn\fR.  It is normally easier to use the 
273 .B \-samefile
274 test instead.
275 .IP "\-ipath \fIpattern\fR"
276 Behaves in the same way as \-iwholename.  This option is deprecated,
277 so please do not use it.
278 .IP "\-iregex \fIpattern\fR"
279 Like \-regex, but the match is case insensitive.
280 .IP "\-iwholename \fIpattern\fR"
281 Like \-wholename, but the match is case insensitive.
282 .IP "\-links \fIn\fR"
283 File has \fIn\fR links.
284 .IP "\-lname \fIpattern\fR"
285 File is a symbolic link whose contents match shell pattern
286 \fIpattern\fR.  The metacharacters do not treat `/' or `.' specially.
287 If the \-L option or the \-follow option is in effect, this test 
288 returns false unless the symbolic link is broken.
289 .IP "\-mmin \fIn\fR"
290 File's data was last modified \fIn\fR minutes ago.
291 .IP "\-mtime \fIn\fR"
292 File's data was last modified \fIn\fR*24 hours ago.
293 See the comments for 
294 .B \-atime 
295 to understand how rounding affects the interpretation of file
296 modification times.
297 .IP "\-name \fIpattern\fR"
298 Base of file name (the path with the leading directories removed)
299 matches shell pattern \fIpattern\fR.  The metacharacters (`*', `?',
300 and `[]') match a `.' at the start of the base name (this is a change
301 in findutils-4.2.2; see section STANDARDS CONFORMANCE below).  To ignore a
302 directory and the files under it, use \-prune; see an example in the
303 description of \-wholename.  Braces are not recognised as being
304 special, despite the fact that some shells including Bash ibmue braces
305 with a special meaning in shell patterns.  The filename matching is
306 performed with the use of the
307 .BR fnmatch (3) 
308 library function.
309 .IP "\-newer \fIfile\fR"
310 File was modified more recently than \fIfile\fR.  If \fIfile\fR is a
311 symbolic link and the \-H option or the \-L option is in effect, the
312 modification time of the file it points to is always used.
313 .IP \-nouser
314 No user corresponds to file's numeric user ID.
315 .IP \-nogroup
316 No group corresponds to file's numeric group ID.
317 .IP "\-path \fIpattern\fR"
318 See \-wholename.   The predicate \-path is also supported by HP-UX 
319 .BR find .
320 .IP "\-perm \fImode\fR"
321 File's permission bits are exactly \fImode\fR (octal or symbolic).
322 Since an exact match is required, if you want to use this form for
323 symbolic modes, you may have to specify a rather complex mode string.
324 For example '\-perm g=w' will only match files which have mode 0020
325 (that is, ones for which group write permission is the only permission
326 set).  It is more likely that you will want to use the '+' or '-'
327 forms, for example '\-perm -g=w', which matches any file with group
328 write permission.  See the
329 .B EXAMPLES 
330 section for some illustrative examples.
331 .IP "\-perm \-\fImode\fR"
332 All of the permission bits \fImode\fR are set for the file.
333 Symbolic modes are accepted in this form, and this is usually the way
334 in which would want to use them.  You must specify 'u', 'g' or 'o' if
335 you use a symbolic mode.   See the 
336 .B EXAMPLES 
337 section for some illustrative examples.
338 .IP "\-perm +\fImode\fR"
339 Any of the permission bits \fImode\fR are set for the file.  Symbolic
340 modes are accepted in this form.  You must specify 'u', 'g' or 'o' if
341 you use a symbolic mode.  See the
342 .B EXAMPLES 
343 section for some illustrative examples.
344 .IP "\-regex \fIpattern\fR"
345 File name matches regular expression \fIpattern\fR.  This is a match
346 on the whole path, not a search.  For example, to match a file named
347 `./fubar3', you can use the regular expression `.*bar.' or `.*b.*3',
348 but not `f.*r3'.  The regular expressions understood by 
349 .B find 
350 follow the conventions for the 
351 .B re_match 
352 system library function where this is present (i.e. on systems using
353 the GNU C Library).  On other systems, the implementation within
354 Gnulib is used; by default, Gnulib provides ``basic'' regular
355 expressions.
356 .IP "\-samefile \fIname\fR"
357 File refers to the same inode as \fIname\fR.   When -L is in effect,
358 this can include symbolic links.
359 .IP "\-size \fIn\fR[cwbkMG]"
360 File uses \fIn\fP units of space.  The following suffixes 
361 can be used:
363 .IP `b' 
364 for 512-byte blocks (this is the default if no suffix is used)
365 .IP `c' 
366 for bytes
367 .IP `w' 
368 for two-byte words
369 .IP `k' 
370 for Kilobytes (units of 1024 bytes)
371 .IP `M' 
372 for Megabytes (units of 1048576 bytes)
373 .IP `G' 
374 for Gigabytes (units of 1073741824 bytes)
377 The size does not count indirect blocks, but it does count blocks in
378 sparse files that are not actually allocated.  Bear in mind that the
379 `%k' and `%b' format specifiers of \-printf handle sparse files
380 differently.  The `b' suffix always denotes 512-byte blocks and never
381 1 Kilobyte blocks, which is different to the behaviour of \-ls.
383 .IP \-true
384 Always true.
385 .IP "\-type \fIc\fR"
386 File is of type \fIc\fR:
388 .IP b
389 block (buffered) special
390 .IP c
391 character (unbuffered) special
392 .IP d
393 directory
394 .IP p
395 named pipe (FIFO)
396 .IP f
397 regular file
398 .IP l
399 symbolic link (never true if the \-L option or the \-follow option is
400 in effect, unless the symbolic link is broken).
401 .IP s
402 socket
403 .IP D
404 door (Solaris)
406 .IP "\-uid \fIn\fR"
407 File's numeric user ID is \fIn\fR.
408 .IP "\-used \fIn\fR"
409 File was last accessed \fIn\fR days after its status was last changed.
410 .IP "\-user \fIuname\fR"
411 File is owned by user \fIuname\fR (numeric user ID allowed).
412 .IP "\-wholename \fIpattern\fR"
413 File name matches shell pattern \fIpattern\fR.  The metacharacters do
414 not treat `/' or `.' specially; so, for example,
416 .in +1i
417 find . \-wholename './sr*sc'
419 .in -1i
420 will print an entry for a directory called './src/misc' (if one
421 exists).  To ignore a whole directory tree, use \-prune rather than
422 checking every file in the tree.  For example, to skip the
423 directory `src/emacs' and all files and directories under it, and
424 print the names of the other files found, do something like this:
426 .in +1i
427 find . \-wholename './src/emacs' \-prune \-o \-print
429 .in -1i
430 .IP "\-xtype \fIc\fR"
431 The same as \-type unless the file is a symbolic link.  For symbolic
432 links: if the \-H or \-P option was specified, true if the file is a
433 link to a file of type \fIc\fR; if the \-L option has been given, true
434 if \fIc\fR is `l'.  In other words, for symbolic links, \-xtype checks
435 the type of the file that \-type does not check.
437 .SS ACTIONS
438 .IP "\-delete\fR"
439 Delete files; true if removal succeeded.  If the removal failed, an
440 error message is issued.
442 .IP "\-exec \fIcommand\fR ;"
443 Execute \fIcommand\fR; true if 0 status is returned.  All following
444 arguments to
445 .B find
446 are taken to be arguments to the command until an argument consisting
447 of `;' is encountered.  The string `{}' is replaced by the current
448 file name being processed everywhere it occurs in the arguments to the
449 command, not just in arguments where it is alone, as in some versions
451 .BR find .
452 Both of these constructions might need to be escaped (with a `\e') or
453 quoted to protect them from expansion by the shell.  See the
454 .B EXAMPLES
455 section for examples of the use of the `\-exec' option.  The specified
456 command is run once for each matched file.
457 The command is executed in the starting directory.   There are
458 unavoidable security problems surrpounding use of the -exec option;
459 you should use the -execdir option instead.  
461 .IP "\-exec \fIcommand\fR {} +"
462 This variant of the -exec option runs the specified command on the
463 selected files, but the command line is built by appending each
464 selected file name at the end; the total number of invocations of the
465 command will be much less than the number of matched files.  The
466 command line is built in much the same way that
467 .B xargs
468 builds its command lines.  Only one instance of '{}' is allowed within
469 the command.  The command is executed in the starting directory.
471 .IP "\-execdir \fIcommand\fR ;"
472 .IP "\-execdir \fIcommand\fR {} +"
473 Like -exec, but the specified command is run from the subdirectory
474 containing the matched file, which is not normally the directory in
475 which you started 
476 .BR find .
477 This a much more secure method for invoking commands, as it avoids
478 race conditions during resolution of the paths to the matched files.
479 As with the -exec option, the '+' form of -execdir will build a
480 command line to process more than one matched file, but any given
481 invocation of
482 .I command 
483 will only list files that exist in the same subdirectory.  If you use
484 this option, you must ensure that your 
485 .B $PATH
486 environment variable does not reference the current directory;
487 otherwise, an attacker can run any commands they like by leaving an
488 appropriately-named file in a directory in which you will run
489 \-execdir.
491 .IP "\-fls \fIfile\fR"
492 True; like \-ls but write to \fIfile\fR like \-fprint.
493 The output file is always created, even if the predicate is never matched.
494 .IP "\-fprint \fIfile\fR"
495 True; print the full file name into file \fIfile\fR.  If \fIfile\fR
496 does not exist when \fBfind\fR is run, it is created; if it does
497 exist, it is truncated.  The file names ``/dev/stdout'' and
498 ``/dev/stderr'' are handled specially; they refer to the standard
499 output and standard error output, respectively.
500 The output file is always created, even if the predicate is never matched.
501 .IP "\-fprint0 \fIfile\fR"
502 True; like \-print0 but write to \fIfile\fR like \-fprint.
503 The output file is always created, even if the predicate is never matched.
504 .IP "\-fprintf \fIfile\fR \fIformat\fR"
505 True; like \-printf but write to \fIfile\fR like \-fprint.
506 The output file is always created, even if the predicate is never matched.
507 .IP "\-ok \fIcommand\fR ;"
508 Like \-exec but ask the user first (on the standard input); if the
509 response does not start with `y' or `Y', do not run the command, and
510 return false.
511 .IP \-print
512 True; print the full file name on the standard output, followed by a
513 newline.   If you are piping the output of 
514 .B find 
515 into another program and there is the faintest possibility that the files 
516 which you are searching for might contain a newline, then you should 
517 seriously consider using the `\-print0' option instead of `\-print'.
518 .IP "\-okdir \fIcommand\fR ;"
519 Like \-execdir but ask the user first (on the standard input); if the
520 response does not start with `y' or `Y', do not run the command, and
521 return false.
522 .IP \-print0
523 True; print the full file name on the standard output, followed by a
524 null character (instead of the newline character that `\-print' uses).
525 This allows file names that contain newlines or other types of white
526 space to be correctly interpreted by programs that process the
527 \fBfind\fR output.  This option corresponds to the `\-0' option of
528 .BR xargs .
529 .IP "\-printf \fIformat\fR"
530 True; print \fIformat\fR on the standard output, interpreting `\e'
531 escapes and `%' directives.  Field widths and precisions can be
532 specified as with the `printf' C function.  Please note that many of
533 the fields are printed as %s rather than %d, and this may mean that
534 flags don't work as you might expect.  This also means that the `\-'
535 flag does work (it forces fields to be left-aligned).  Unlike \-print,
536 \-printf does not add a newline at the end of the string.  The escapes
537 and directives are:
539 .IP \ea
540 Alarm bell.
541 .IP \eb
542 Backspace.
543 .IP \ec
544 Stop printing from this format immediately and flush the output.
545 .IP \ef
546 Form feed.
547 .IP \en
548 Newline.
549 .IP \er
550 Carriage return.
551 .IP \et
552 Horizontal tab.
553 .IP \ev
554 Vertical tab.
555 .IP \e\0
556 ASCII NUL.
557 .IP \e\e
558 A literal backslash (`\e').
559 .IP \eNNN
560 The character whose ASCII code is NNN (octal).
562 A `\e' character followed by any other character is treated as an
563 ordinary character, so they both are printed.
564 .IP %%
565 A literal percent sign.
566 .IP %a
567 File's last access time in the format returned by the C `ctime' function.
568 .IP %A\fIk\fP
569 File's last access time in the format specified by \fIk\fR, which is
570 either `@' or a directive for the C `strftime' function.  The possible
571 values for \fIk\fR are listed below; some of them might not be
572 available on all systems, due to differences in `strftime' between
573 systems.  
575 .IP @
576 seconds since Jan. 1, 1970, 00:00 GMT.
578 Time fields:
579 .IP H
580 hour (00..23)
581 .IP I
582 hour (01..12)
583 .IP k
584 hour ( 0..23)
585 .IP l
586 hour ( 1..12)
587 .IP M
588 minute (00..59)
589 .IP p
590 locale's AM or PM
591 .IP r
592 time, 12-hour (hh:mm:ss [AP]M)
593 .IP S
594 second (00..61)
595 .IP T
596 time, 24-hour (hh:mm:ss)
597 .IP +
598 Date and time, separated by '+', for example `2004\-04\-28+22:22:05'.
599 The time is given in the current timezone (which may be affected by
600 setting the TZ environment variable).  This is a GNU extension.
601 .IP X
602 locale's time representation (H:M:S)
603 .IP Z
604 time zone (e.g., EDT), or nothing if no time zone is determinable
606 Date fields:
607 .IP a
608 locale's abbreviated weekday name (Sun..Sat)
609 .IP A
610 locale's full weekday name, variable length (Sunday..Saturday)
611 .IP b
612 locale's abbreviated month name (Jan..Dec)
613 .IP B
614 locale's full month name, variable length (January..December)
615 .IP c
616 locale's date and time (Sat Nov 04 12:02:33 EST 1989)
617 .IP d
618 day of month (01..31)
619 .IP D
620 date (mm/dd/yy)
621 .IP h
622 same as b
623 .IP j
624 day of year (001..366)
625 .IP m
626 month (01..12)
627 .IP U
628 week number of year with Sunday as first day of week (00..53)
629 .IP w
630 day of week (0..6)
631 .IP W
632 week number of year with Monday as first day of week (00..53)
633 .IP x
634 locale's date representation (mm/dd/yy)
635 .IP y
636 last two digits of year (00..99)
637 .IP Y
638 year (1970...)
640 .IP %b
641 File's size in 512-byte blocks (rounded up).
642 .IP %c
643 File's last status change time in the format returned by the C `ctime'
644 function.
645 .IP %C\fIk\fP
646 File's last status change time in the format specified by \fIk\fR,
647 which is the same as for %A.
648 .IP %d
649 File's depth in the directory tree; 0 means the file is a command line
650 argument.
651 .IP %D
652 The device number on which the file exists (the st_dev field of struct
653 stat), in decimal.
654 .IP %f
655 File's name with any leading directories removed (only the last element).
656 .IP %F
657 Type of the filesystem the file is on; this value can be used for
658 \-fstype.
659 .IP %g
660 File's group name, or numeric group ID if the group has no name.
661 .IP %G
662 File's numeric group ID.
663 .IP %h
664 Leading directories of file's name (all but the last element).
665 .IP %H
666 Command line argument under which file was found.
667 .IP %i
668 File's inode number (in decimal).
669 .IP %k
670 The amount of disk space used for this file in 1K blocks (rounded
671 up).  This is different from %s/1024 if the file is a sparse file.
672 .IP %l
673 Object of symbolic link (empty string if file is not a symbolic link).
674 .IP %m
675 File's permission bits (in octal).  This option uses the 'traditional'
676 numbers which most Unix implementations use, but if your particular 
677 implementation uses an unusual ordering of octal permissions bits, you
678 will see a difference between the actual value of the file's mode and
679 the output of %m.   Normally you will want to have a leading
680 zero on this number, and to do this, you should use the 
681 .B #
682 flag (as in, for example, '%#m').
683 .IP %n
684 Number of hard links to file.
685 .IP %p
686 File's name.
687 .IP %P
688 File's name with the name of the command line argument under which
689 it was found removed.
690 .IP %s
691 File's size in bytes.
692 .IP %t
693 File's last modification time in the format returned by the C `ctime'
694 function.
695 .IP %T\fIk\fP
696 File's last modification time in the format specified by \fIk\fR, 
697 which is the same as for %A.
698 .IP %u
699 File's user name, or numeric user ID if the user has no name.
700 .IP %U
701 File's numeric user ID.
702 .IP %y
703 File's type (like in ls \-l), U=unknown type (shouldn't happen)
704 .IP %Y
705 File's type (like %y), plus follow symlinks: L=loop, N=nonexistent
707 A `%' character followed by any other character is discarded (but the
708 other character is printed).
710 The %m and %d directives support the 
711 .B #
713 .B 0 
714 and 
715 .B + 
716 flags, but the other directives do not, even if they
717 print numbers.  Numeric directives that do not support these flags
718 include 
719 .BR G , 
720 .BR U , 
721 .BR b , 
722 .BR D , 
723 .B  k 
724 and 
725 .BR n .
726 The `\-' format flag is supported and changes the alignment of a field
727 from right-justified (which is the default) to left-justified.
731 .IP \-prune
732 If \-depth is not given, true; if the file is a directory, do not descend
733 into it.
735 If \-depth is given, false; no effect.
737 .IP "\-quit"
738 Exit immediately.  No child proceses will be left running, but no more
739 paths specified on the command line will be processed.  For example,
740 .B find /tmp/foo /tmp/bar \-print \-quit
741 will print only
742 .BR /tmp/foo .
743 Any command lines which have been built up with `
744 .B \-execdir ... {} +
745 .R \' 
746 will be invoked before 
747 .B find
748 exits.   The exit status may or may not be zero, depending on whether
749 an error has already occurred.  
751 .IP \-ls
752 True; list current file in `ls \-dils' format on standard output.
753 The block counts are of 1K blocks, unless the environment variable
754 POSIXLY_CORRECT is set, in which case 512-byte blocks are used.
756 .SS OPERATORS
758 Listed in order of decreasing precedence:
759 .IP "( \fIexpr\fR )"
760 Force precedence.
761 .IP "! \fIexpr\fR"
762 True if \fIexpr\fR is false.
763 .IP "\-not \fIexpr\fR"
764 Same as ! \fIexpr\fR.
765 .IP "\fIexpr1 expr2\fR"
766 And (implied); \fIexpr2\fR is not evaluated if \fIexpr1\fR is false.
767 .IP "\fIexpr1\fR \-a \fIexpr2\fR"
768 Same as \fIexpr1 expr2\fR.
769 .IP "\fIexpr1\fR \-and \fIexpr2\fR"
770 Same as \fIexpr1 expr2\fR.
771 .IP "\fIexpr1\fR \-o \fIexpr2\fR"
772 Or; \fIexpr2\fR is not evaluated if \fIexpr1\fR is true.
773 .IP "\fIexpr1\fR \-or \fIexpr2\fR"
774 Same as \fIexpr1\fR \-o \fIexpr2\fR.
775 .IP "\fIexpr1\fR , \fIexpr2\fR"
776 List; both \fIexpr1\fR and \fIexpr2\fR are always evaluated.
777 The value of \fIexpr1\fR is discarded; the value of the list is the
778 value of \fIexpr2\fR.   
779 The comma operator can be useful for searching for several
780 different types of thing, but traversing the filesystem hierarchy only
781 once.   The 
782 .B \-fprintf  
783 action can be used to list the various matched items into several
784 different output files.
787 .SH "STANDARDS CONFORMANCE"
788 The following options are specified in the POSIX standard 
789 (IEEE Std 1003.1, 2003 Edition):
790 .IP "\-H"
791 This option is supported.
792 .IP "\-L"
793 This option is supported.
794 .IP "\-name"
795 This option is supported, but POSIX conformance depends on the 
796 POSIX conformance of the system's 
797 .BR fnmatch (3) 
798 library function.  As of findutils-4.2.2, shell metacharacters
799 ('*'. '?' or '[]' for example) will match a leading '.', because 
800 IEEE PASC interpretation 126 requires this.   This is a change from
801 previous versions of findutils.
802 .IP "\-type"
803 Supported.   POSIX specifies `b', `c', `d', `l', `p', `f' and `s'.
804 GNU find also supports `D', representing a Door, where the OS provides these.
806 .IP "\-ok"
807 Supported.   Interpretation of the response is not locale-dependent
808 (see ENVIRONMENT VARIABLES).
810 .IP "\-newer"
811 Supported.  If the file specified is a symbolic link, it is always
812 dereferenced.  This is a change from previous behaviour, which used to 
813 take the relevant time from the symbolic link; see the HISTORY section
814 below.
816 .IP "Other predicates"
817 The predicates
818 `\-atime',
819 `\-ctime',
820 `\-depth',
821 `\-group',
822 `\-links',
823 `\-mtime',
824 `\-nogroup',
825 `\-nouser',
826 `\-perm',
827 `\-print',
828 `\-prune',
829 `\-size',
830 `\-user' and 
831 `\-xdev',
832 are all supported.
835 The POSIX standard specifies parentheses `(', `)', negation `!' and the
836 `and' and `or' operators (`\-a', `\-o').   
838 All other options, predicates, expressions and so forth are extensions 
839 beyond the POSIX standard.  Many of these extensions are not unique to 
840 GNU find, however.
842 The POSIX standard requires that 
844 The 
845 .B find
846 utility shall detect infinite loops; that is, entering a
847 previously visited directory that is an ancestor of the last file
848 encountered. When it detects an infinite loop, find shall write a
849 diagnostic message to standard error and shall either recover its
850 position in the hierarchy or terminate.
852 The link count of directories which contain entries which are hard
853 links to an ancestor will often be lower than they otherwise should
854 be.  This can mean that GNU find will sometimes optimise away the
855 visiting of a subdirectory which is actually a link to an ancestor.
856 Since 
857 .B find
858 does not actually enter such a subdirectory, it is allowed to avoid
859 emitting a diagnostic message.  Although this behaviour may be
860 somewhat confusing, it is unlikely that anybody actually depends on
861 this behaviour.  If the leaf optimisation has been turned off with
862 .BR -noleaf ,
863 the directory entry will always be examined and the diagnostic message
864 will be issued where it is appropriate.  Symbolic links cannot be used
865 to create filesystem cycles as such, but if the \-L option or the
866 \-follow option is in use, a diagnostic message is issued when 
867 .B find 
868 encounters a loop of symbolic links.  As with loops containing hard
869 links, the leaf optimisation will often mean that 
870 .B find
871 knows that it doesn't need to call 
872 .I stat()
874 .I chdir() 
875 on the symbolic link, so this diagnostic is frequently not necessary.
877 The \-d option is supported for comatibility with various BSD systems,
878 but you should use the POSIX-compliant predicate \-depth instead.
879 .SH "ENVIRONMENT VARIABLES"
880 .IP POSIXLY_CORRECT
881 Determines the block size used by `-ls'.
882 .IP LANG
883 Provides a default value for the internationalization variables that
884 are unset or null.
885 .IP LC_ALL
886 If set to a non-empty string value, override the values of all the
887 other internationalization variables.
888 .IP LC_COLLATE
889 The POSIX standard specifies that this variable affects the pattern
890 matching to be used for the `\-name' option.   GNU find uses the 
891 .BR fnmatch (3) 
892 library function, and so support for `LC_COLLATE' depends on the
893 system library.    
895 POSIX also specifies that the `LC_COLLATE' environment 
896 variable affects the interpretation of the user's response to the 
897 query issued by `\-ok', but this is not the case for GNU find.
898 .IP LC_CTYPE 
899 This variable affects the treatment of character classes used with 
900 the `\-name' option, if the system's 
901 .BR fnmatch (3) 
902 library function supports this.   It has no effect on the behaviour 
903 of the `\-ok' expression.
904 .IP LC_MESSAGES
905 Determines the locale to be used for internationalised messages.
906 .IP NLSPATH
907 Determines the location of the internationalisation message catalogues.
908 .IP PATH
909 Affects the directores which are searched to find the executables 
910 invoked by `\-exec' and `\-ok'.
911 .SH "EXAMPLES"
913 .B find /tmp \-name core \-type f \-print | xargs /bin/rm -f
916 Find files named 
917 .B core
918 in or below the directory 
919 .B /tmp 
920 and delete them.  Note that this will work incorrectly if there are 
921 any filenames containing newlines, single or double quotes, or spaces.
923 .B find /tmp \-name core \-type f \-print0 | xargs \-0 /bin/rm -f
926 Find files named 
927 .B core
928 in or below the directory 
929 .B /tmp 
930 and delete them, processing filenames in such a way that file or
931 directory names containing single or double quotes, spaces or newlines
932 are correctly handled.  The
933 .B \-name 
934 test comes before the 
935 .B \-type
936 test in order to avoid having to call 
937 .B stat(2) 
938 on every file.
942 .B find . \-type f \-exec file '{}' \e\;
945 Runs `file' on every file in or below the current directory.  Notice
946 that the braces are enclosed in single quote marks to protect them
947 from interpretation as shell script punctuation.   The semicolon is
948 similarly protected by the use of a backslash, though ';' could have
949 been used in that case also.
953 .B find /  \t( \-perm +4000 \-fprintf /root/suid.txt '%#m %u %p\en' ) , \e
954 .B         \t\t( \-size +100M \-fprintf /root/big.txt  '%\-10s %p\en'  )
957 Traverse the filesystem just once, listing setuid files and
958 directories into
959 .B /root/suid.txt
960 and large files into 
961 .BR /root/big/txt .
965 .B find $HOME  -mtime 0
968 Search for files in your home directory which have been modified in
969 the last twenty-four hours.  This command works this way because the
970 time since each file was last accessed is divided by 24 hours and any 
971 remainder is discarded.  That means that to match 
972 .B -atime 
973 .BR 0 ,
974 a file will have to have a modification in the past which is less than
975 24 hours ago.
980 .B find . -perm 664
983 Search for files which have read and write permission for their owner,
984 and group, but which the rest of the world can read but not write to.  
985 Files which meet these criteria but have other permissions bits set
986 (for example if someone can execute the file) will not be matched.
990 .B find . -perm -664
993 Search for files which have read and write permission for their owner,
994 and group, but which the rest of the world can read but not write to,
995 without regard to the presence of any extra permission bits (for
996 example the executable bit).  This will match a file which has mode
997 0777, for example.
1001 .B find . -perm +222
1004 Search for files which are writeable by somebody (their owner, or
1005 their group, or anybody else).
1009 .B find . -perm +022
1010 .B find . -perm +g+w,o+w
1011 .B find . -perm +g=w,o=w
1014 All three of these commands do the same thing, but the first one uses
1015 the octal representation of the file mode, and the other two use the
1016 symbolic form.  These commands all search for files which are
1017 writeable by either their owner or their group.  The files don't have
1018 to be writeable by both the owner and group to be matched; either will
1023 .B find . -perm -022
1024 .B find . -perm -g+w,o+w
1027 Both these commands do the same thing; search for files which are
1028 writeable by both their owner and their group.
1032 .SH EXIT STATUS
1034 .B find
1035 exits with status 0 if all files are processed successfully, greater
1036 than 0 if errors occur.   This is deliberately a very broad
1037 description, but if the return value is non-zero, you should not rely
1038 on the correctness of the results of 
1039 .BR find .
1041 .SH "SEE ALSO"
1042 \fBlocate\fP(1), \fBlocatedb\fP(5), \fBupdatedb\fP(1), \fBxargs\fP(1)
1043 \fBFinding Files\fP (on-line in Info, or printed)
1044 .SH "HISTORY"
1045 As of findutils-4.2.2, shell metacharacters ('*'. '?' or '[]' for
1046 example) used in filename patterns will match a leading '.', because
1047 IEEE POSIX interpretation 126 requires this.
1049 .SH "BUGS"
1050 .P 
1051 The best way to report a bug is to use the form at
1052 http://savannah.gnu.org/bugs/?group=findutils.  
1053 The reason for this is that you will then be able to track progress in
1054 fixing the problem.   Other comments about \fBfind\fP(1) and about
1055 the findutils package in general can be sent to the 
1056 .I bug\-findutils
1057 mailing list.  To join the list, send email to 
1058 .IR bug\-findutils\-request@gnu.org .