]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/find/find.1
This commit was generated by cvs2svn to compensate for changes in r161537,
[FreeBSD/FreeBSD.git] / usr.bin / find / find.1
1 .\" Copyright (c) 1990, 1993
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 .\" 3. All advertising materials mentioning features or use of this software
16 .\"    must display the following acknowledgement:
17 .\"     This product includes software developed by the University of
18 .\"     California, Berkeley and its contributors.
19 .\" 4. Neither the name of the University nor the names of its contributors
20 .\"    may be used to endorse or promote products derived from this software
21 .\"    without specific prior written permission.
22 .\"
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" SUCH DAMAGE.
34 .\"
35 .\"     @(#)find.1      8.7 (Berkeley) 5/9/95
36 .\" $FreeBSD$
37 .\"
38 .Dd July 18, 2006
39 .Dt FIND 1
40 .Os
41 .Sh NAME
42 .Nm find
43 .Nd walk a file hierarchy
44 .Sh SYNOPSIS
45 .Nm
46 .Op Fl H | Fl L | Fl P
47 .Op Fl EXdsx
48 .Op Fl f Ar pathname
49 .Ar pathname ...
50 .Ar expression
51 .Nm
52 .Op Fl H | Fl L | Fl P
53 .Op Fl EXdsx
54 .Fl f Ar pathname
55 .Op Ar pathname ...
56 .Ar expression
57 .Sh DESCRIPTION
58 The
59 .Nm
60 utility recursively descends the directory tree for each
61 .Ar pathname
62 listed, evaluating an
63 .Ar expression
64 (composed of the
65 .Dq primaries
66 and
67 .Dq operands
68 listed below) in terms
69 of each file in the tree.
70 .Pp
71 The options are as follows:
72 .Bl -tag -width indent
73 .It Fl E
74 Interpret regular expressions followed by
75 .Ic -regex
76 and
77 .Ic -iregex
78 options as extended (modern) regular expressions rather than basic
79 regular expressions (BRE's).
80 The
81 .Xr re_format 7
82 manual page fully describes both formats.
83 .It Fl H
84 Cause the file information and file type (see
85 .Xr stat 2 )
86 returned for each symbolic link specified on the command line to be
87 those of the file referenced by the link, not the link itself.
88 If the referenced file does not exist, the file information and type will
89 be for the link itself.
90 File information of all symbolic links not on
91 the command line is that of the link itself.
92 .It Fl L
93 Cause the file information and file type (see
94 .Xr stat 2 )
95 returned for each symbolic link to be those of the file referenced by the
96 link, not the link itself.
97 If the referenced file does not exist, the file information and type will
98 be for the link itself.
99 .Pp
100 This option is equivalent to the deprecated
101 .Ic -follow
102 primary.
103 .It Fl P
104 Cause the file information and file type (see
105 .Xr stat 2 )
106 returned for each symbolic link to be those of the link itself.
107 This is the default.
108 .It Fl X
109 Permit
110 .Nm
111 to be safely used in conjunction with
112 .Xr xargs 1 .
113 If a file name contains any of the delimiting characters used by
114 .Xr xargs 1 ,
115 a diagnostic message is displayed on standard error, and the file
116 is skipped.
117 The delimiting characters include single
118 .Pq Dq Li " ' "
119 and double
120 .Pq Dq Li " \*q "
121 quotes, backslash
122 .Pq Dq Li \e ,
123 space, tab and newline characters.
124 .Pp
125 However, you may wish to consider the
126 .Fl print0
127 primary in conjunction with
128 .Dq Nm xargs Fl 0
129 as an effective alternative.
130 .It Fl d
131 Cause
132 .Nm
133 to perform a depth-first traversal, i.e., directories
134 are visited in post-order and all entries in a directory will be acted
135 on before the directory itself.
136 By default,
137 .Nm
138 visits directories in pre-order, i.e., before their contents.
139 Note, the default is
140 .Em not
141 a breadth-first traversal.
142 .Pp
143 This option is equivalent to the
144 .Ic -depth
145 primary of
146 .St -p1003.1-2001 .
147 .Fl d
148 can be useful when
149 .Nm
150 is used with
151 .Xr cpio 1
152 to process files that are contained in directories with unusual permissions.
153 It ensures that you have write permission while you are placing files in a
154 directory, then sets the directory's permissions as the last thing.
155 .It Fl f
156 Specify a file hierarchy for
157 .Nm
158 to traverse.
159 File hierarchies may also be specified as the operands immediately
160 following the options.
161 .It Fl s
162 Cause
163 .Nm
164 to traverse the file hierarchies in lexicographical order,
165 i.e., alphabetical order within each directory.
166 Note:
167 .Ql find -s
168 and
169 .Ql "find | sort"
170 may give different results.
171 .It Fl x
172 Prevent
173 .Nm
174 from descending into directories that have a device number different
175 than that of the file from which the descent began.
176 .Pp
177 This option is equivalent to the deprecated
178 .Ic -xdev
179 primary.
180 .El
181 .Sh PRIMARIES
182 .Bl -tag -width indent
183 .It Ic -Bmin Ar n
184 True if the difference between the time of a file's inode creation
185 and the time
186 .Nm
187 was started, rounded up to the next full minute, is
188 .Ar n
189 minutes.
190 .It Ic -Bnewer Ar file
191 Same as
192 .Ic -newerBm .
193 .It Ic -Btime Ar n Ns Op Cm smhdw
194 If no units are specified, this primary evaluates to
195 true if the difference between the time of a file's inode creation
196 and the time
197 .Nm
198 was started, rounded up to the next full 24-hour period, is
199 .Ar n
200 24-hour periods.
201 .Pp
202 If units are specified, this primary evaluates to
203 true if the difference between the time of last change of file status
204 information and the time
205 .Nm
206 was started is exactly
207 .Ar n
208 units.
209 Please refer to the
210 .Ic -atime
211 primary description for information on supported time units.
212 .It Ic -acl
213 May be used in conjunction with other options to locate
214 files with extended ACLs.
215 See
216 .Xr acl 3
217 for more information.
218 .It Ic -amin Ar n
219 True if the difference between the file last access time and the time
220 .Nm
221 was started, rounded up to the next full minute, is
222 .Ar n
223 minutes.
224 .It Ic -anewer Ar file
225 Same as
226 .Ic -neweram .
227 .It Ic -atime Ar n Ns Op Cm smhdw
228 If no units are specified, this primary evaluates to
229 true if the difference between the file last access time and the time
230 .Nm
231 was started, rounded up to the next full 24-hour period, is
232 .Ar n
233 24-hour periods.
234 .Pp
235 If units are specified, this primary evaluates to
236 true if the difference between the file last access time and the time
237 .Nm
238 was started is exactly
239 .Ar n
240 units.
241 Possible time units are as follows:
242 .Pp
243 .Bl -tag -width indent -compact
244 .It Cm s
245 second
246 .It Cm m
247 minute (60 seconds)
248 .It Cm h
249 hour (60 minutes)
250 .It Cm d
251 day (24 hours)
252 .It Cm w
253 week (7 days)
254 .El
255 .Pp
256 Any number of units may be combined in one
257 .Ic -atime
258 argument, for example,
259 .Dq Li "-atime -1h30m" .
260 Units are probably only useful when used in conjunction with the
261 .Cm +
262 or
263 .Cm -
264 modifier.
265 .It Ic -cmin Ar n
266 True if the difference between the time of last change of file status
267 information and the time
268 .Nm
269 was started, rounded up to the next full minute, is
270 .Ar n
271 minutes.
272 .It Ic -cnewer Ar file
273 Same as
274 .Ic -newercm .
275 .It Ic -ctime Ar n Ns Op Cm smhdw
276 If no units are specified, this primary evaluates to
277 true if the difference between the time of last change of file status
278 information and the time
279 .Nm
280 was started, rounded up to the next full 24-hour period, is
281 .Ar n
282 24-hour periods.
283 .Pp
284 If units are specified, this primary evaluates to
285 true if the difference between the time of last change of file status
286 information and the time
287 .Nm
288 was started is exactly
289 .Ar n
290 units.
291 Please refer to the
292 .Ic -atime
293 primary description for information on supported time units.
294 .It Ic -delete
295 Delete found files and/or directories.
296 Always returns true.
297 This executes
298 from the current working directory as
299 .Nm
300 recurses down the tree.
301 It will not attempt to delete a filename with a
302 .Dq Pa /
303 character in its pathname relative to
304 .Dq Pa \&.
305 for security reasons.
306 Depth-first traversal processing is implied by this option.
307 .It Ic -depth
308 Always true;
309 same as the
310 .Fl d
311 option.
312 .It Ic -depth Ar n
313 True if the depth of the file relative to the starting point of the traversal
314 is
315 .Ar n .
316 .It Ic -empty
317 True if the current file or directory is empty.
318 .It Ic -exec Ar utility Oo Ar argument ... Oc Li \&;
319 True if the program named
320 .Ar utility
321 returns a zero value as its exit status.
322 Optional
323 .Ar arguments
324 may be passed to the utility.
325 The expression must be terminated by a semicolon
326 .Pq Dq Li \&; .
327 If you invoke
328 .Nm
329 from a shell you may need to quote the semicolon if the shell would
330 otherwise treat it as a control operator.
331 If the string
332 .Dq Li {}
333 appears anywhere in the utility name or the
334 arguments it is replaced by the pathname of the current file.
335 .Ar Utility
336 will be executed from the directory from which
337 .Nm
338 was executed.
339 .Ar Utility
340 and
341 .Ar arguments
342 are not subject to the further expansion of shell patterns
343 and constructs.
344 .It Ic -exec Ar utility Oo Ar argument ... Oc Li {} +
345 Same as
346 .Ic -exec ,
347 except that
348 .Dq Li {}
349 is replaced with as many pathnames as possible for each invocation of
350 .Ar utility .
351 This behaviour is similar to that of
352 .Xr xargs 1 .
353 .It Ic -execdir Ar utility Oo Ar argument ... Oc Li \&;
354 The
355 .Ic -execdir
356 primary is identical to the
357 .Ic -exec
358 primary with the exception that
359 .Ar utility
360 will be executed from the directory that holds
361 the current file.
362 The filename substituted for
363 the string
364 .Dq Li {}
365 is not qualified.
366 .It Ic -flags Oo Cm - Ns | Ns Cm + Oc Ns Ar flags , Ns Ar notflags
367 The flags are specified using symbolic names (see
368 .Xr chflags 1 ) .
369 Those with the
370 .Qq Li no
371 prefix (except
372 .Qq Li nodump )
373 are said to be
374 .Ar notflags .
375 Flags in
376 .Ar flags
377 are checked to be set, and flags in
378 .Ar notflags
379 are checked to be not set.
380 Note that this is different from
381 .Ic -perm ,
382 which only allows the user to specify mode bits that are set.
383 .Pp
384 If flags are preceded by a dash
385 .Pq Dq Li - ,
386 this primary evaluates to true
387 if at least all of the bits in
388 .Ar flags
389 and none of the bits in
390 .Ar notflags
391 are set in the file's flags bits.
392 If flags are preceded by a plus
393 .Pq Dq Li + ,
394 this primary evaluates to true
395 if any of the bits in
396 .Ar flags
397 is set in the file's flags bits,
398 or any of the bits in
399 .Ar notflags
400 is not set in the file's flags bits.
401 Otherwise,
402 this primary evaluates to true
403 if the bits in
404 .Ar flags
405 exactly match the file's flags bits,
406 and none of the
407 .Ar flags
408 bits match those of
409 .Ar notflags .
410 .It Ic -fstype Ar type
411 True if the file is contained in a file system of type
412 .Ar type .
413 The
414 .Xr sysctl 8
415 command can be used to find out the types of file systems
416 that are available on the system:
417 .Pp
418 .Dl "sysctl vfs"
419 .Pp
420 In addition, there are two pseudo-types,
421 .Dq Li local
422 and
423 .Dq Li rdonly .
424 The former matches any file system physically mounted on the system where
425 the
426 .Nm
427 is being executed and the latter matches any file system which is
428 mounted read-only.
429 .It Ic -group Ar gname
430 True if the file belongs to the group
431 .Ar gname .
432 If
433 .Ar gname
434 is numeric and there is no such group name, then
435 .Ar gname
436 is treated as a group ID.
437 .It Ic -iname Ar pattern
438 Like
439 .Ic -name ,
440 but the match is case insensitive.
441 .It Ic -inum Ar n
442 True if the file has inode number
443 .Ar n .
444 .It Ic -ipath Ar pattern
445 Like
446 .Ic -path ,
447 but the match is case insensitive.
448 .It Ic -iregex Ar pattern
449 Like
450 .Ic -regex ,
451 but the match is case insensitive.
452 .It Ic -links Ar n
453 True if the file has
454 .Ar n
455 links.
456 .It Ic -ls
457 This primary always evaluates to true.
458 The following information for the current file is written to standard output:
459 its inode number, size in 512-byte blocks, file permissions, number of hard
460 links, owner, group, size in bytes, last modification time, and pathname.
461 If the file is a block or character special file, the major and minor numbers
462 will be displayed instead of the size in bytes.
463 If the file is a symbolic link, the pathname of the linked-to file will be
464 displayed preceded by
465 .Dq Li -> .
466 The format is identical to that produced by
467 .Bk -words
468 .Nm ls Fl dgils .
469 .Ek
470 .It Ic -maxdepth Ar n
471 Always true; descend at most
472 .Ar n
473 directory levels below the command line arguments.
474 If any
475 .Ic -maxdepth
476 primary is specified, it applies to the entire expression even if it would
477 not normally be evaluated.
478 .Ic -maxdepth Li 0
479 limits the whole search to the command line arguments.
480 .It Ic -mindepth Ar n
481 Always true; do not apply any tests or actions at levels less than
482 .Ar n .
483 If any
484 .Ic -mindepth
485 primary is specified, it applies to the entire expression even if it would
486 not normally be evaluated.
487 .Ic -mindepth Li 1
488 processes all but the command line arguments.
489 .It Ic -mmin Ar n
490 True if the difference between the file last modification time and the time
491 .Nm
492 was started, rounded up to the next full minute, is
493 .Ar n
494 minutes.
495 .It Ic -mnewer Ar file
496 Same as
497 .Ic -newer .
498 .It Ic -mtime Ar n Ns Op Cm smhdw
499 If no units are specified, this primary evaluates to
500 true if the difference between the file last modification time and the time
501 .Nm
502 was started, rounded up to the next full 24-hour period, is
503 .Ar n
504 24-hour periods.
505 .Pp
506 If units are specified, this primary evaluates to
507 true if the difference between the file last modification time and the time
508 .Nm
509 was started is exactly
510 .Ar n
511 units.
512 Please refer to the
513 .Ic -atime
514 primary description for information on supported time units.
515 .It Ic -name Ar pattern
516 True if the last component of the pathname being examined matches
517 .Ar pattern .
518 Special shell pattern matching characters
519 .Dq ( Li \&[ ,
520 .Dq Li \&] ,
521 .Dq Li * ,
522 and
523 .Dq Li \&? )
524 may be used as part of
525 .Ar pattern .
526 These characters may be matched explicitly by escaping them with a
527 backslash
528 .Pq Dq Li \e .
529 .It Ic -newer Ar file
530 True if the current file has a more recent last modification time than
531 .Ar file .
532 .It Ic -newer Ns Ar X Ns Ar Y Ar file
533 True if the current file has a more recent last access time
534 .Ar ( X Ns = Ns Cm a ) ,
535 inode creation time
536 .Ar ( X Ns = Ns Cm B ) ,
537 change time
538 .Ar ( X Ns = Ns Cm c ) ,
539 or modification time
540 .Ar ( X Ns = Ns Cm m )
541 than the last access time
542 .Ar ( Y Ns = Ns Cm a ) ,
543 inode creation time
544 .Ar ( Y Ns = Ns Cm B ) ,
545 change time
546 .Ar ( Y Ns = Ns Cm c ) ,
547 or modification time
548 .Ar ( Y Ns = Ns Cm m )
549 of
550 .Ar file .
551 In addition, if
552 .Ar Y Ns = Ns Cm t ,
553 then
554 .Ar file
555 is instead interpreted as a direct date specification of the form
556 understood by
557 .Xr cvs 1 .
558 Note that
559 .Ic -newermm
560 is equivalent to
561 .Ic -newer .
562 .It Ic -nogroup
563 True if the file belongs to an unknown group.
564 .It Ic -nouser
565 True if the file belongs to an unknown user.
566 .It Ic -ok Ar utility Oo Ar argument ... Oc Li \&;
567 The
568 .Ic -ok
569 primary is identical to the
570 .Ic -exec
571 primary with the exception that
572 .Nm
573 requests user affirmation for the execution of the
574 .Ar utility
575 by printing
576 a message to the terminal and reading a response.
577 If the response is not affirmative
578 .Ql ( y
579 in the
580 .Dq Li POSIX
581 locale),
582 the command is not executed and the
583 value of the
584 .Ic -ok
585 expression is false.
586 .It Ic -okdir Ar utility Oo Ar argument ... Oc Li \&;
587 The
588 .Ic -okdir
589 primary is identical to the
590 .Ic -execdir
591 primary with the same exception as described for the
592 .Ic -ok
593 primary.
594 .It Ic -path Ar pattern
595 True if the pathname being examined matches
596 .Ar pattern .
597 Special shell pattern matching characters
598 .Dq ( Li \&[ ,
599 .Dq Li \&] ,
600 .Dq Li * ,
601 and
602 .Dq Li \&? )
603 may be used as part of
604 .Ar pattern .
605 These characters may be matched explicitly by escaping them with a
606 backslash
607 .Pq Dq Li \e .
608 Slashes
609 .Pq Dq Li /
610 are treated as normal characters and do not have to be
611 matched explicitly.
612 .It Ic -perm Oo Cm - Ns | Ns Cm + Oc Ns Ar mode
613 The
614 .Ar mode
615 may be either symbolic (see
616 .Xr chmod 1 )
617 or an octal number.
618 If the
619 .Ar mode
620 is symbolic, a starting value of zero is assumed and the
621 .Ar mode
622 sets or clears permissions without regard to the process' file mode
623 creation mask.
624 If the
625 .Ar mode
626 is octal, only bits 07777
627 .Pq Dv S_ISUID | S_ISGID | S_ISTXT | S_IRWXU | S_IRWXG | S_IRWXO
628 of the file's mode bits participate
629 in the comparison.
630 If the
631 .Ar mode
632 is preceded by a dash
633 .Pq Dq Li - ,
634 this primary evaluates to true
635 if at least all of the bits in the
636 .Ar mode
637 are set in the file's mode bits.
638 If the
639 .Ar mode
640 is preceded by a plus
641 .Pq Dq Li + ,
642 this primary evaluates to true
643 if any of the bits in the
644 .Ar mode
645 are set in the file's mode bits.
646 Otherwise, this primary evaluates to true if
647 the bits in the
648 .Ar mode
649 exactly match the file's mode bits.
650 Note, the first character of a symbolic mode may not be a dash
651 .Pq Dq Li - .
652 .It Ic -print
653 This primary always evaluates to true.
654 It prints the pathname of the current file to standard output.
655 If none of
656 .Ic -exec , -ls , -print0 ,
657 or
658 .Ic -ok
659 is specified, the given expression shall be effectively replaced by
660 .Cm \&( Ar "given expression" Cm \&) Ic -print .
661 .It Ic -print0
662 This primary always evaluates to true.
663 It prints the pathname of the current file to standard output, followed by an
664 .Tn ASCII NUL
665 character (character code 0).
666 .It Ic -prune
667 This primary always evaluates to true.
668 It causes
669 .Nm
670 to not descend into the current file.
671 Note, the
672 .Ic -prune
673 primary has no effect if the
674 .Fl d
675 option was specified.
676 .It Ic -regex Ar pattern
677 True if the whole path of the file matches
678 .Ar pattern
679 using regular expression.
680 To match a file named
681 .Dq Pa ./foo/xyzzy ,
682 you can use the regular expression
683 .Dq Li ".*/[xyz]*"
684 or
685 .Dq Li ".*/foo/.*" ,
686 but not
687 .Dq Li xyzzy
688 or
689 .Dq Li /foo/ .
690 .It Ic -size Ar n Ns Op Cm ckMGTP
691 True if the file's size, rounded up, in 512-byte blocks is
692 .Ar n .
693 If
694 .Ar n
695 is followed by a
696 .Cm c ,
697 then the primary is true if the
698 file's size is
699 .Ar n
700 bytes (characters).
701 Similarly if
702 .Ar n
703 is followed by a scale indicator then the file's size is compared to
704 .Ar n
705 scaled as:
706 .Pp
707 .Bl -tag -width indent -compact
708 .It Cm k
709 kilobytes (1024 bytes)
710 .It Cm M
711 megabytes (1024 kilobytes)
712 .It Cm G
713 gigabytes (1024 megabytes)
714 .It Cm T
715 terabytes (1024 gigabytes)
716 .It Cm P
717 petabytes (1024 terabytes)
718 .El
719 .Pp
720 .It Ic -type Ar t
721 True if the file is of the specified type.
722 Possible file types are as follows:
723 .Pp
724 .Bl -tag -width indent -compact
725 .It Cm b
726 block special
727 .It Cm c
728 character special
729 .It Cm d
730 directory
731 .It Cm f
732 regular file
733 .It Cm l
734 symbolic link
735 .It Cm p
736 FIFO
737 .It Cm s
738 socket
739 .El
740 .It Ic -user Ar uname
741 True if the file belongs to the user
742 .Ar uname .
743 If
744 .Ar uname
745 is numeric and there is no such user name, then
746 .Ar uname
747 is treated as a user ID.
748 .El
749 .Pp
750 All primaries which take a numeric argument allow the number to be
751 preceded by a plus sign
752 .Pq Dq Li +
753 or a minus sign
754 .Pq Dq Li - .
755 A preceding plus sign means
756 .Dq more than n ,
757 a preceding minus sign means
758 .Dq less than n
759 and neither means
760 .Dq exactly n .
761 .Sh OPERATORS
762 The primaries may be combined using the following operators.
763 The operators are listed in order of decreasing precedence.
764 .Pp
765 .Bl -tag -width "( expression )" -compact
766 .It Cm \&( Ar expression Cm \&)
767 This evaluates to true if the parenthesized expression evaluates to
768 true.
769 .Pp
770 .It Cm \&! Ar expression
771 .It Cm -false Ar expression
772 .It Cm -not Ar expression
773 This is the unary
774 .Tn NOT
775 operator.
776 It evaluates to true if the expression is false.
777 .Pp
778 .It Ar expression Cm -and Ar expression
779 .It Ar expression expression
780 The
781 .Cm -and
782 operator is the logical
783 .Tn AND
784 operator.
785 As it is implied by the juxtaposition of two expressions it does not
786 have to be specified.
787 The expression evaluates to true if both expressions are true.
788 The second expression is not evaluated if the first expression is false.
789 .Pp
790 .It Ar expression Cm -or Ar expression
791 The
792 .Cm -or
793 operator is the logical
794 .Tn OR
795 operator.
796 The expression evaluates to true if either the first or the second expression
797 is true.
798 The second expression is not evaluated if the first expression is true.
799 .El
800 .Pp
801 All operands and primaries must be separate arguments to
802 .Nm .
803 Primaries which themselves take arguments expect each argument
804 to be a separate argument to
805 .Nm .
806 .Sh ENVIRONMENT
807 The
808 .Ev LANG , LC_ALL , LC_COLLATE , LC_CTYPE , LC_MESSAGES
809 and
810 .Ev LC_TIME
811 environment variables affect the execution of the
812 .Nm
813 utility as described in
814 .Xr environ 7 .
815 .Sh EXAMPLES
816 The following examples are shown as given to the shell:
817 .Bl -tag -width indent
818 .It Li "find / \e! -name \*q*.c\*q -print"
819 Print out a list of all the files whose names do not end in
820 .Pa .c .
821 .It Li "find / -newer ttt -user wnj -print"
822 Print out a list of all the files owned by user
823 .Dq wnj
824 that are newer
825 than the file
826 .Pa ttt .
827 .It Li "find / \e! \e( -newer ttt -user wnj \e) -print"
828 Print out a list of all the files which are not both newer than
829 .Pa ttt
830 and owned by
831 .Dq wnj .
832 .It Li "find / \e( -newer ttt -or -user wnj \e) -print"
833 Print out a list of all the files that are either owned by
834 .Dq wnj
835 or that are newer than
836 .Pa ttt .
837 .It Li "find / -newerct '1 minute ago' -print"
838 Print out a list of all the files whose inode change time is more
839 recent than the current time minus one minute.
840 .It Li "find / -type f -exec echo {} \e;"
841 Use the
842 .Xr echo 1
843 command to print out a list of all the files.
844 .It Li "find -L /usr/ports/packages -type l -delete"
845 Delete all broken symbolic links in
846 .Pa /usr/ports/packages .
847 .It Li "find /usr/src -name CVS -prune -o -depth +6 -print"
848 Find files and directories that are at least seven levels deep
849 in the working directory
850 .Pa /usr/src .
851 .It Li "find /usr/src -name CVS -prune -o -mindepth 7 -print"
852 Is not equivalent to the previous example, since
853 .Ic -prune
854 is not evaluated below level seven.
855 .El
856 .Sh COMPATIBILITY
857 The
858 .Ic -follow
859 primary is deprecated; the
860 .Fl L
861 option should be used instead.
862 See the
863 .Sx STANDARDS
864 section below for details.
865 .Sh SEE ALSO
866 .Xr chflags 1 ,
867 .Xr chmod 1 ,
868 .Xr cvs 1 ,
869 .Xr locate 1 ,
870 .Xr whereis 1 ,
871 .Xr which 1 ,
872 .Xr xargs 1 ,
873 .Xr stat 2 ,
874 .Xr acl 3 ,
875 .Xr fts 3 ,
876 .Xr getgrent 3 ,
877 .Xr getpwent 3 ,
878 .Xr strmode 3 ,
879 .Xr re_format 7 ,
880 .Xr symlink 7
881 .Sh STANDARDS
882 The
883 .Nm
884 utility syntax is a superset of the syntax specified by the
885 .St -p1003.1-2001
886 standard.
887 .Pp
888 All the single character options except
889 .Ic -H
890 and
891 .Ic -L
892 as well as the
893 .Ic -iname , -inum , -iregex , -print0 , -delete , -ls , -regex ,
894 and all of the
895 .Ic -B
896 birthtime related primaries are extensions to
897 .St -p1003.1-2001 .
898 .Pp
899 Historically, the
900 .Fl d , L
901 and
902 .Fl x
903 options were implemented using the primaries
904 .Ic -depth , -follow ,
905 and
906 .Ic -xdev .
907 These primaries always evaluated to true.
908 As they were really global variables that took effect before the traversal
909 began, some legal expressions could have unexpected results.
910 An example is the expression
911 .Ic -print Cm -o Ic -depth .
912 As
913 .Ic -print
914 always evaluates to true, the standard order of evaluation
915 implies that
916 .Ic -depth
917 would never be evaluated.
918 This is not the case.
919 .Pp
920 The operator
921 .Cm -or
922 was implemented as
923 .Cm -o ,
924 and the operator
925 .Cm -and
926 was implemented as
927 .Cm -a .
928 .Pp
929 Historic implementations of the
930 .Ic -exec
931 and
932 .Ic -ok
933 primaries did not replace the string
934 .Dq Li {}
935 in the utility name or the
936 utility arguments if it had preceding or following non-whitespace characters.
937 This version replaces it no matter where in the utility name or arguments
938 it appears.
939 .Pp
940 The
941 .Fl E
942 option was inspired by the equivalent
943 .Xr grep 1
944 and
945 .Xr sed 1
946 options.
947 .Sh HISTORY
948 A
949 .Nm
950 command appeared in
951 .At v1 .
952 .Sh BUGS
953 The special characters used by
954 .Nm
955 are also special characters to many shell programs.
956 In particular, the characters
957 .Dq Li * ,
958 .Dq Li \&[ ,
959 .Dq Li \&] ,
960 .Dq Li \&? ,
961 .Dq Li \&( ,
962 .Dq Li \&) ,
963 .Dq Li \&! ,
964 .Dq Li \e
965 and
966 .Dq Li \&;
967 may have to be escaped from the shell.
968 .Pp
969 As there is no delimiter separating options and file names or file
970 names and the
971 .Ar expression ,
972 it is difficult to specify files named
973 .Pa -xdev
974 or
975 .Pa \&! .
976 These problems are handled by the
977 .Fl f
978 option and the
979 .Xr getopt 3
980 .Dq Fl Fl
981 construct.
982 .Pp
983 The
984 .Ic -delete
985 primary does not interact well with other options that cause the file system
986 tree traversal options to be changed.
987 .Pp
988 The
989 .Ic -mindepth
990 and
991 .Ic -maxdepth
992 primaries are actually global options (as documented above).
993 They should
994 probably be replaced by options which look like options.