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