]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/find/find.1
This commit was generated by cvs2svn to compensate for changes in r162916,
[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
665 .Dv NUL
666 character (character code 0).
667 .It Ic -prune
668 This primary always evaluates to true.
669 It causes
670 .Nm
671 to not descend into the current file.
672 Note, the
673 .Ic -prune
674 primary has no effect if the
675 .Fl d
676 option was specified.
677 .It Ic -regex Ar pattern
678 True if the whole path of the file matches
679 .Ar pattern
680 using regular expression.
681 To match a file named
682 .Dq Pa ./foo/xyzzy ,
683 you can use the regular expression
684 .Dq Li ".*/[xyz]*"
685 or
686 .Dq Li ".*/foo/.*" ,
687 but not
688 .Dq Li xyzzy
689 or
690 .Dq Li /foo/ .
691 .It Ic -size Ar n Ns Op Cm ckMGTP
692 True if the file's size, rounded up, in 512-byte blocks is
693 .Ar n .
694 If
695 .Ar n
696 is followed by a
697 .Cm c ,
698 then the primary is true if the
699 file's size is
700 .Ar n
701 bytes (characters).
702 Similarly if
703 .Ar n
704 is followed by a scale indicator then the file's size is compared to
705 .Ar n
706 scaled as:
707 .Pp
708 .Bl -tag -width indent -compact
709 .It Cm k
710 kilobytes (1024 bytes)
711 .It Cm M
712 megabytes (1024 kilobytes)
713 .It Cm G
714 gigabytes (1024 megabytes)
715 .It Cm T
716 terabytes (1024 gigabytes)
717 .It Cm P
718 petabytes (1024 terabytes)
719 .El
720 .Pp
721 .It Ic -type Ar t
722 True if the file is of the specified type.
723 Possible file types are as follows:
724 .Pp
725 .Bl -tag -width indent -compact
726 .It Cm b
727 block special
728 .It Cm c
729 character special
730 .It Cm d
731 directory
732 .It Cm f
733 regular file
734 .It Cm l
735 symbolic link
736 .It Cm p
737 FIFO
738 .It Cm s
739 socket
740 .El
741 .It Ic -user Ar uname
742 True if the file belongs to the user
743 .Ar uname .
744 If
745 .Ar uname
746 is numeric and there is no such user name, then
747 .Ar uname
748 is treated as a user ID.
749 .El
750 .Pp
751 All primaries which take a numeric argument allow the number to be
752 preceded by a plus sign
753 .Pq Dq Li +
754 or a minus sign
755 .Pq Dq Li - .
756 A preceding plus sign means
757 .Dq more than n ,
758 a preceding minus sign means
759 .Dq less than n
760 and neither means
761 .Dq exactly n .
762 .Sh OPERATORS
763 The primaries may be combined using the following operators.
764 The operators are listed in order of decreasing precedence.
765 .Pp
766 .Bl -tag -width "( expression )" -compact
767 .It Cm \&( Ar expression Cm \&)
768 This evaluates to true if the parenthesized expression evaluates to
769 true.
770 .Pp
771 .It Cm \&! Ar expression
772 .It Cm -false Ar expression
773 .It Cm -not Ar expression
774 This is the unary
775 .Tn NOT
776 operator.
777 It evaluates to true if the expression is false.
778 .Pp
779 .It Ar expression Cm -and Ar expression
780 .It Ar expression expression
781 The
782 .Cm -and
783 operator is the logical
784 .Tn AND
785 operator.
786 As it is implied by the juxtaposition of two expressions it does not
787 have to be specified.
788 The expression evaluates to true if both expressions are true.
789 The second expression is not evaluated if the first expression is false.
790 .Pp
791 .It Ar expression Cm -or Ar expression
792 The
793 .Cm -or
794 operator is the logical
795 .Tn OR
796 operator.
797 The expression evaluates to true if either the first or the second expression
798 is true.
799 The second expression is not evaluated if the first expression is true.
800 .El
801 .Pp
802 All operands and primaries must be separate arguments to
803 .Nm .
804 Primaries which themselves take arguments expect each argument
805 to be a separate argument to
806 .Nm .
807 .Sh ENVIRONMENT
808 The
809 .Ev LANG , LC_ALL , LC_COLLATE , LC_CTYPE , LC_MESSAGES
810 and
811 .Ev LC_TIME
812 environment variables affect the execution of the
813 .Nm
814 utility as described in
815 .Xr environ 7 .
816 .Sh EXAMPLES
817 The following examples are shown as given to the shell:
818 .Bl -tag -width indent
819 .It Li "find / \e! -name \*q*.c\*q -print"
820 Print out a list of all the files whose names do not end in
821 .Pa .c .
822 .It Li "find / -newer ttt -user wnj -print"
823 Print out a list of all the files owned by user
824 .Dq wnj
825 that are newer
826 than the file
827 .Pa ttt .
828 .It Li "find / \e! \e( -newer ttt -user wnj \e) -print"
829 Print out a list of all the files which are not both newer than
830 .Pa ttt
831 and owned by
832 .Dq wnj .
833 .It Li "find / \e( -newer ttt -or -user wnj \e) -print"
834 Print out a list of all the files that are either owned by
835 .Dq wnj
836 or that are newer than
837 .Pa ttt .
838 .It Li "find / -newerct '1 minute ago' -print"
839 Print out a list of all the files whose inode change time is more
840 recent than the current time minus one minute.
841 .It Li "find / -type f -exec echo {} \e;"
842 Use the
843 .Xr echo 1
844 command to print out a list of all the files.
845 .It Li "find -L /usr/ports/packages -type l -delete"
846 Delete all broken symbolic links in
847 .Pa /usr/ports/packages .
848 .It Li "find /usr/src -name CVS -prune -o -depth +6 -print"
849 Find files and directories that are at least seven levels deep
850 in the working directory
851 .Pa /usr/src .
852 .It Li "find /usr/src -name CVS -prune -o -mindepth 7 -print"
853 Is not equivalent to the previous example, since
854 .Ic -prune
855 is not evaluated below level seven.
856 .El
857 .Sh COMPATIBILITY
858 The
859 .Ic -follow
860 primary is deprecated; the
861 .Fl L
862 option should be used instead.
863 See the
864 .Sx STANDARDS
865 section below for details.
866 .Sh SEE ALSO
867 .Xr chflags 1 ,
868 .Xr chmod 1 ,
869 .Xr cvs 1 ,
870 .Xr locate 1 ,
871 .Xr whereis 1 ,
872 .Xr which 1 ,
873 .Xr xargs 1 ,
874 .Xr stat 2 ,
875 .Xr acl 3 ,
876 .Xr fts 3 ,
877 .Xr getgrent 3 ,
878 .Xr getpwent 3 ,
879 .Xr strmode 3 ,
880 .Xr re_format 7 ,
881 .Xr symlink 7
882 .Sh STANDARDS
883 The
884 .Nm
885 utility syntax is a superset of the syntax specified by the
886 .St -p1003.1-2001
887 standard.
888 .Pp
889 All the single character options except
890 .Ic -H
891 and
892 .Ic -L
893 as well as the
894 .Ic -iname , -inum , -iregex , -print0 , -delete , -ls , -regex ,
895 and all of the
896 .Ic -B
897 birthtime related primaries are extensions to
898 .St -p1003.1-2001 .
899 .Pp
900 Historically, the
901 .Fl d , L
902 and
903 .Fl x
904 options were implemented using the primaries
905 .Ic -depth , -follow ,
906 and
907 .Ic -xdev .
908 These primaries always evaluated to true.
909 As they were really global variables that took effect before the traversal
910 began, some legal expressions could have unexpected results.
911 An example is the expression
912 .Ic -print Cm -o Ic -depth .
913 As
914 .Ic -print
915 always evaluates to true, the standard order of evaluation
916 implies that
917 .Ic -depth
918 would never be evaluated.
919 This is not the case.
920 .Pp
921 The operator
922 .Cm -or
923 was implemented as
924 .Cm -o ,
925 and the operator
926 .Cm -and
927 was implemented as
928 .Cm -a .
929 .Pp
930 Historic implementations of the
931 .Ic -exec
932 and
933 .Ic -ok
934 primaries did not replace the string
935 .Dq Li {}
936 in the utility name or the
937 utility arguments if it had preceding or following non-whitespace characters.
938 This version replaces it no matter where in the utility name or arguments
939 it appears.
940 .Pp
941 The
942 .Fl E
943 option was inspired by the equivalent
944 .Xr grep 1
945 and
946 .Xr sed 1
947 options.
948 .Sh HISTORY
949 A
950 .Nm
951 command appeared in
952 .At v1 .
953 .Sh BUGS
954 The special characters used by
955 .Nm
956 are also special characters to many shell programs.
957 In particular, the characters
958 .Dq Li * ,
959 .Dq Li \&[ ,
960 .Dq Li \&] ,
961 .Dq Li \&? ,
962 .Dq Li \&( ,
963 .Dq Li \&) ,
964 .Dq Li \&! ,
965 .Dq Li \e
966 and
967 .Dq Li \&;
968 may have to be escaped from the shell.
969 .Pp
970 As there is no delimiter separating options and file names or file
971 names and the
972 .Ar expression ,
973 it is difficult to specify files named
974 .Pa -xdev
975 or
976 .Pa \&! .
977 These problems are handled by the
978 .Fl f
979 option and the
980 .Xr getopt 3
981 .Dq Fl Fl
982 construct.
983 .Pp
984 The
985 .Ic -delete
986 primary does not interact well with other options that cause the file system
987 tree traversal options to be changed.
988 .Pp
989 The
990 .Ic -mindepth
991 and
992 .Ic -maxdepth
993 primaries are actually global options (as documented above).
994 They should
995 probably be replaced by options which look like options.