No empty .Rs/.Re
[netbsd-mini2440.git] / usr.bin / find / find.1
bloba354f63956e1a8b8574c8c645f7c43a3940d014d
1 .\"     $NetBSD: find.1,v 1.68 2009/10/15 02:26:38 joerg Exp $
2 .\"
3 .\" Copyright (c) 1990, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to Berkeley by
7 .\" the Institute of Electrical and Electronics Engineers, Inc.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\" 3. Neither the name of the University nor the names of its contributors
18 .\"    may be used to endorse or promote products derived from this software
19 .\"    without specific prior written permission.
20 .\"
21 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 .\" SUCH DAMAGE.
32 .\"
33 .\"     from: @(#)find.1        8.7 (Berkeley) 5/9/95
34 .\"
35 .Dd November 6, 2009
36 .Dt FIND 1
37 .Os
38 .Sh NAME
39 .Nm find
40 .Nd walk a file hierarchy
41 .Sh SYNOPSIS
42 .Nm
43 .Op Fl H | Fl L | Fl P
44 .Op Fl dEhsXx
45 .Ar file
46 .Op Ar file ...
47 .Op Ar expression
48 .Nm
49 .Op Fl H | Fl L | Fl P
50 .Op Fl dEhsXx
51 .Fl f Ar file
52 .Op Ar file ...
53 .Op Ar expression
54 .Sh DESCRIPTION
55 .Nm
56 recursively descends the directory tree for each
57 .Ar file
58 listed, evaluating an
59 .Ar expression
60 (composed of the
61 .Dq primaries
62 and
63 .Dq operands
64 listed below) in terms
65 of each file in the tree.
66 .Pp
67 The options are as follows:
68 .Pp
69 .Bl -tag -width Ds
70 .It Fl H
71 The
72 .Fl H
73 option causes the file information and file type (see
74 .Xr stat 2 ) ,
75 returned for each symbolic link encountered on the command line to be
76 those of the file referenced by the link, not the link itself.
77 If the referenced file does not exist, the file information and type will
78 be for the link itself.
79 File information of all symbolic links not on the command line is that
80 of the link itself.
81 .It Fl L
82 The
83 .Fl L
84 option causes the file information and file type (see
85 .Xr stat 2 )
86 returned for each symbolic link to be those of the file referenced by the
87 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 .It Fl P
91 The
92 .Fl P
93 option causes the file information and file type (see
94 .Xr stat 2 )
95 returned for each symbolic link to be those of the link itself.
96 .It Fl d
97 The
98 .Fl d
99 option causes
101 to perform a depth-first traversal, i.e., directories
102 are visited in post-order and all entries in a directory will be acted
103 on before the directory itself.
104 By default,
106 visits directories in pre-order, i.e., before their contents.
107 Note, the default is
108 .Ar not
109 a breadth-first traversal.
110 .It Fl E
112 .Fl E
113 option causes
114 .Ar regexp
115 arguments to primaries to be interpreted as extended regular
116 expressions (see
117 .Xr re_format 7 ) .
118 .It Fl f
120 .Fl f
121 option specifies a file hierarchy for
123 to traverse.
124 File hierarchies may also be specified as the operands immediately
125 following the options.
126 .It Fl h
128 .Fl h
129 option causes the file information and file type (see
130 .Xr stat  2  ) ,
131 returned for each symbolic link to be those of the file referenced by the
132 link, not the link itself.
133 If the referenced file does not exist, the file information and type will
134 be for the link itself.
135 .It Fl s
137 .Fl s
138 option causes the entries of each directory to be sorted in
139 lexicographical order.
140 Note that the sorting is done only inside of each directory;
141 files in different directories are not sorted.
142 Therefore,
143 .Sq Li a/b
144 appears before
145 .Sq Li a.b ,
146 which is different from
147 .Dq Li "find ... \&| sort"
148 order.
149 .It Fl X
151 .Fl X
152 option is a modification to permit
154 to be safely used in conjunction with
155 .Xr xargs 1 .
156 If a file name contains any of the delimiting characters used by
157 .Nm xargs ,
158 a diagnostic message is displayed on standard error, and the file
159 is skipped.
160 The delimiting characters include single
161 .Pq Dq \&'
162 and double
163 .Pq Dq \&"
164 quotes, backslash
165 .Pq Dq \e ,
166 space, tab and newline characters.
167 Alternatively, the
168 .Ic -print0
170 .Ic -printx
171 primaries can be used to format the output in a way that
172 .Nm xargs
173 can accept.
174 .It Fl x
176 .Fl x
177 option restricts the search to the file system containing the
178 directory specified.
179 Does not list mount points to other file systems.
181 .Sh PRIMARIES
182 .Bl -tag -width Ds -compact
183 .It Ic -amin Ar n
184 True if the difference between the file last access time and the time
186 was started, rounded up to the next full minute, is
187 .Ar n
188 minutes.
190 .It Ic -anewer Ar file
191 True if the current file has a more recent last access time than
192 .Ar file  .
194 .It Ic -atime Ar n
195 True if the difference between the file last access time and the time
197 was started, rounded up to the next full 24-hour period, is
198 .Ar n
199 24-hour periods.
201 .It Ic -cmin Ar n
202 True if the difference between the time of last change of file status
203 information and the time
205 was started, rounded up to the next full minute, is
206 .Ar n
207 minutes.
209 .It Ic -cnewer Ar file
210 True if the current file has a more recent last change time than
211 .Ar file  .
213 .It Ic -ctime Ar n
214 True if the difference between the time of last change of file status
215 information and the time
217 was started, rounded up to the next full 24-hour period, is
218 .Ar n
219 24-hour periods.
221 .It Ic -delete
222 Delete found files, symbolic links and directories.
223 Always returns True.
224 This executes from the current working directory as
226 recurses down the tree.
227 To avoid deleting unexpected files, it will ignore any filenames that
228 .Xr fts 3
229 returns that contain a
230 .Dq /
231 .Xr ( fts 3
232 should not return such pathnames).
233 Depth-first traversal processing is implied by this option.
234 This can also be invoked as
235 .Ic -rm .
237 .It Ic -empty
238 True if the current file or directory is empty.
240 .It Ic -exec Ar utility Oo argument ... Oc No ;
241 .It Ic -exec Ar utility Oo argument ... Oc No {} +
242 Execute the specified
243 .Ar utility
244 with the specified arguments.
245 The list of arguments is terminated by
246 .Dq Li \&;
248 .Dq Li \&+ .
249 .Ar utility
250 will be executed from the directory from which
252 was executed.
254 If terminated by a semicolon
255 .Pq Dq \&; ,
257 .Ar utility
258 is invoked once per path.
259 If the string
260 .Dq {}
261 appears anywhere in the utility name or the arguments,
262 it is replaced by the pathname of the current file.
264 If terminated by a plus sign
265 .Pq Dq \&+ ,
266 the pathnames for which the
267 primary is evaluated are aggregated into sets, and
268 .Ar utility
269 will be invoked once per set, similar to
270 .Xr xargs 1 .
271 If any invocation exits with non-zero exit status, then
273 will eventually do so as well, but this does not cause
275 to exit early.
276 The string
277 .Dq {}
278 must appear, and must appear last.
279 Each set is limitted to no more than 5,000 pathnames,
280 and is also limitted such that the invokation of
281 .Ar utility
282 does not exceed
283 .Dv ARG_MAX .
285 .It Ic -execdir Ar utility Oo argument ... Oc No ;
287 .Ic -execdir
288 primary is similar to the semicolon-terminated
289 .Pq Dq \&;
290 variant of the
291 .Ic -exec
292 primary, with the exception that
293 .Ar utility
294 will be executed from the directory that holds
295 the current file.
296 The filename substituted for the string
297 .Dq {}
298 is not qualified.
299 Set aggregation
300 .Pq Do \&+ Dc termination
301 is not supported.
303 .It Ic -exit Op Ar n
304 This primary causes
306 to stop traversing the filesystem and exit immediately if a
307 previous condition was met.
308 If no value is specified, the exit value will be 0, else
309 .Ar n .
310 Note that other primaries will be evaluated and acted upon before exiting.
312 .It Ic -false
313 This primary always evaluates to false.
314 This can be used following a primary that caused the
315 expression to be true to make the expression to be false.
316 This can be useful after using a
317 .Ic -fprint
318 primary so it can continue to the next expression (using an
319 .Cm -or
320 operator, for example).
322 .It Ic -flags Oo Fl Oc Ns Ar flags
324 .Ar flags
325 are preceded by a dash
326 .Pq Dq - ,
327 this primary evaluates to true
328 if at least all of the bits in
329 .Ar flags
330 are set in the file's flags bits.
332 .Ar flags
333 are not preceded by a dash, this primary evaluates to true if
334 the bits in
335 .Ar flags
336 exactly match the file's flags bits.
338 .Ar flags
340 .Dq none ,
341 files with no flags bits set are matched.
342 (See
343 .Xr chflags 1
344 for more information about file flags.)
346 .It Ic -follow
347 Follow symbolic links.
349 .It Ic -fprint Ar filename
350 This primary always evaluates to true.
351 This creates
352 .Ar filename
353 or overwrites the file if it already exists.
354 The file is created at startup.
355 It writes the pathname of the current file to this file, followed
356 by a newline character.
357 The file will be empty if no files are matched.
359 .It Ic -fstype Ar type
360 True if the file is contained in a file system of type
361 .Ar type .
363 .Xr sysctl 8
364 command can be used to find out the types of filesystems
365 that are available on the system:
366 .Bd -literal -offset indent
367 sysctl vfs.generic.fstypes
370 In addition, there are two pseudo-types,
371 .Dq local
373 .Dq rdonly .
374 The former matches any file system physically mounted on the system where
377 is being executed, and the latter matches any file system which is
378 mounted read-only.
380 .It Ic -group Ar gname
381 True if the file belongs to the group
382 .Ar gname  .
384 .Ar gname
385 is numeric and there is no such group name, then
386 .Ar gname
387 is treated as a group id.
389 .It Ic -iname Ar pattern
390 True if the last component of the pathname being examined
391 matches
392 .Ar pattern .
393 Case insensitive.
395 .It Ic -inum Ar n
396 True if the file has inode number
397 .Ar n  .
399 .It Ic -iregex Ar regexp
400 True if the path name of the current file matches the case-insensitive
401 basic regular expression
402 .Pq see Xr re_format 7
403 .Ar regexp .
404 This is a match on the whole path, not a search for the regular expression
405 within the path.
407 .It Ic -links Ar n
408 True if the file has
409 .Ar n
410 links.
412 .It Ic -rm
413 This is an alias for
414 .Ic -delete .
416 .It Ic -ls
417 This primary always evaluates to true.
418 The following information for the current file is written to standard output:
419 its inode number, size in 512-byte blocks, file permissions, number of hard
420 links, owner, group, size in bytes, last modification time, and pathname.
421 If the file is a block or character special file, the major and minor numbers
422 will be displayed instead of the size in bytes.
423 If the file is a symbolic link, the pathname of the linked-to file will be
424 displayed preceded by
425 .Dq -\*[Gt] .
426 The format is identical to that produced by
427 .Dq ls -dgils .
429 .It Ic -maxdepth Ar n
430 True if the current search depth is less than or equal to what is specified in
431 .Ar n .
433 .It Ic -mindepth Ar n
434 True if the current search depth is at least what is specified in
435 .Ar n .
437 .It Ic -mmin Ar n
438 True if the difference between the file last modification time and the time
440 was started, rounded up to the next full minute, is
441 .Ar n
442 minutes.
444 .It Ic -mtime Ar n
445 True if the difference between the file last modification time and the time
447 was started, rounded up to the next full 24-hour period, is
448 .Ar n
449 24-hour periods.
451 .It Ic -ok Ar utility Oo argument ... Oc No ;
453 .Ic -ok
454 primary is similar to the semicolon-terminated
455 .Pq Dq \&;
456 variant of the
457 .Ic -exec
458 primary, with the exception that
460 requests user affirmation for the execution of the utility by printing
461 a message to the terminal and reading a response.
462 If the response is other than
463 .Dq y ,
464 the command is not executed and the
465 .Ar -ok
466 primary evaluates to false.
467 Set aggregation
468 .Pq Do \&+ Dc termination
469 is not supported.
471 .It Ic -name Ar pattern
472 True if the last component of the pathname being examined matches
473 .Ar pattern  .
474 Special shell pattern matching characters
476 .Dq \&[ ,
477 .Dq \&] ,
478 .Dq \&* ,
479 .Dq \&?
481 may be used as part of
482 .Ar pattern  .
483 These characters may be matched explicitly by escaping them with a
484 backslash
485 .Pq Dq \e .
487 .It Ic -newer Ar file
488 True if the current file has a more recent last modification time than
489 .Ar file  .
491 .It Ic -nouser
492 True if the file belongs to an unknown user.
494 .It Ic -nogroup
495 True if the file belongs to an unknown group.
497 .It Ic -path Ar pattern
498 True if the pathname being examined matches
499 .Ar pattern  .
500 Special shell pattern matching characters
502 .Dq \&[ ,
503 .Dq \&] ,
504 .Dq \&* ,
506 .Dq \&?
508 may be used as part of
509 .Ar pattern  .
510 These characters may be matched explicitly by escaping them with a
511 backslash
512 .Pq Dq \e .
513 Slashes
514 .Pq Dq /
515 are treated as normal characters and do not have to be
516 matched explicitly.
518 .It Ic -perm Oo Fl Oc Ns Ar mode
520 .Ar mode
521 may be either symbolic (see
522 .Xr chmod  1  )
523 or an octal number.
524 If the mode is symbolic, a starting value of zero is assumed and the
525 mode sets or clears permissions without regard to the process' file mode
526 creation mask.
527 If the mode is octal, only bits 07777
528 .Pf ( Dv S_ISUID
530 .Dv S_ISGID
532 .Dv S_ISTXT
534 .Dv S_IRWXU
536 .Dv S_IRWXG
538 .Dv S_IRWXO )
539 of the file's mode bits participate
540 in the comparison.
541 If the mode is preceded by a dash
542 .Pq Dq - ,
543 this primary evaluates to true
544 if at least all of the bits in the mode are set in the file's mode bits.
545 If the mode is not preceded by a dash, this primary evaluates to true if
546 the bits in the mode exactly match the file's mode bits.
547 Note, the first character of a symbolic mode may not be a dash
548 .Pq Dq - .
550 .It Ic -print
551 This primary always evaluates to true.
552 It prints the pathname of the current file to standard output, followed
553 by a newline character.
554 If none of
555 .Ic -exec ,
556 .Ic -exit ,
557 .Ic -fprint ,
558 .Ic -ls ,
559 .Ic -ok ,
560 .Ic -print0 ,
562 .Ic -printx
563 is specified, the given expression shall be effectively replaced by
564 .Cm \&( Ns Ar given\& expression Ns Cm \&)
565 .Ic -print .
567 .It Ic -print0
568 This primary always evaluates to true.
569 It prints the pathname of the current file to standard output, followed
570 by a null character.
572 .It Ic -printx
573 This primary always evaluates to true.
574 It prints the pathname of the current file to standard output,
575 with each space, tab, newline, backslash, dollar sign, and single,
576 double, or back quotation mark prefixed by a backslash, so the output of
577 .Nm find
578 can safely be used as input to
579 .Nm xargs .
581 .It Ic -prune
582 This primary always evaluates to true.
583 It causes
585 to not descend into the current file.
586 Note, the
587 .Ic -prune
588 primary has no effect if the
589 .Fl d
590 option was specified.
592 .It Ic -regex Ar regexp
593 True if the path name of the current file matches the case-sensitive
594 basic regular expression
595 .Pq see Xr re_format 7
596 .Ar regexp .
597 This is a match on the whole path, not a search for the regular expression
598 within the path.
600 .It Ic -size Ar n Ns Op Cm c
601 True if the file's size, rounded up, in 512-byte blocks is
602 .Ar n  .
604 .Ar n
605 is followed by a
606 .Dq c ,
607 then the primary is true if the file's size is
608 .Ar n
609 bytes.
611 .It Ic -type Ar t
612 True if the file is of the specified type.
613 Possible file types are as follows:
615 .Bl -tag -width flag -offset indent -compact
616 .It Cm b
617 block special
618 .It Cm c
619 character special
620 .It Cm d
621 directory
622 .It Cm f
623 regular file
624 .It Cm l
625 symbolic link
626 .It Cm p
627 FIFO
628 .It Cm s
629 socket
630 .It Cm W
631 whiteout
632 .It Cm w
633 whiteout
636 .It Ic -user Ar uname
637 True if the file belongs to the user
638 .Ar uname  .
640 .Ar uname
641 is numeric and there is no such user name, then
642 .Ar uname
643 is treated as a user id (and considered a numeric argument).
645 .It Ic -xdev
646 This primary always evaluates to true.
647 It causes find not to descend past directories that have a different
648 device ID (st_dev, see
649 .Xr stat 2
650 S5.6.2 [POSIX.1]).
653 All primaries which take a numeric argument allow the number to be
654 preceded by a plus sign
655 .Pq Dq +
656 or a minus sign
657 .Pq Dq \- .
658 A preceding plus sign means
659 .Dq more than n ,
660 a preceding minus sign means
661 .Dq less than n ,
662 and neither means
663 .Dq exactly n .
664 .Sh OPERATORS
665 The primaries may be combined using the following operators.
666 The operators are listed in order of decreasing precedence.
667 .Bl -tag -width (expression)
668 .It Cm \&( Ar expression Cm \&)
669 This evaluates to true if the parenthesized expression evaluates to
670 true.
672 .It Cm \&! Ar expression
673 This is the unary
674 .Tn NOT
675 operator.
676 It evaluates to true if the expression is false.
678 .It Ar expression Cm -and Ar expression
679 .It Ar expression expression
681 .Cm -and
682 operator is the logical
683 .Tn AND
684 operator.
685 As it is implied by the juxtaposition of two expressions it does not
686 have to be specified.
687 The expression evaluates to true if both expressions are true.
688 The second expression is not evaluated if the first expression is false.
690 .It Ar expression Cm -or Ar expression
692 .Cm -or
693 operator is the logical
694 .Tn OR
695 operator.
696 The expression evaluates to true if either the first or the second expression
697 is true.
698 The second expression is not evaluated if the first expression is true.
701 All operands and primaries must be separate arguments to
702 .Nm  .
703 Primaries which themselves take arguments expect each argument
704 to be a separate argument to
705 .Nm  .
706 .Sh EXIT STATUS
709 utility normally exits 0 on success, and exits with 1 under certain
710 internal error conditions.
711 If any invokations of
712 .Dq Ic -exec Ar ... No +
713 primaries return non-zero exit-status, then
715 will do so as well.
716 .Sh EXAMPLES
717 The following examples are shown as given to the shell:
718 .Bl -tag -width findx
719 .It Li "find  /  \e!  -name  \*q*.c\*q  -print"
720 Print out a list of all the files whose names do not end in
721 .Dq \&.c .
722 .It Li "find  /  -newer  ttt  -user  wnj  -print"
723 Print out a list of all the files owned by user
724 .Dq wnj
725 that are newer than the file
726 .Dq ttt .
727 .It Li "find  /  \e!  \e(  -newer  ttt  -user  wnj  \e)  -print"
728 Print out a list of all the files which are not both newer than
729 .Dq ttt
730 and owned by
731 .Dq wnj .
732 .It Li "find  /  \e(  -newer  ttt  -or  -user wnj  \e)  -print"
733 Print out a list of all the files that are either owned by
734 .Dq wnj
735 or that are newer than
736 .Dq ttt .
737 .It Li "find  /  \e(  -newer  ttt  -or  -user wnj  \e)  -exit 1"
738 Return immediately with a value of 1 if any files are found that are either
739 owned by
740 .Dq wnj
741 or that are newer than
742 .Dq ttt ,
743 but do not print them.
744 .It Li "find  /  \e(  -newer  ttt  -or  -user wnj  \e)  -ls -exit 1"
745 Same as above, but list the first file matching the criteria before exiting
746 with a value of 1.
748 .Sh SEE ALSO
749 .Xr chflags 1 ,
750 .Xr chmod 1 ,
751 .Xr locate 1 ,
752 .Xr xargs 1 ,
753 .Xr stat 2 ,
754 .Xr fts 3 ,
755 .Xr getgrent 3 ,
756 .Xr getpwent 3 ,
757 .Xr strmode 3 ,
758 .Xr symlink 7 ,
759 .Xr sysctl 8
760 .Sh STANDARDS
763 utility syntax is a superset of the syntax specified by the
764 .St -p1003.2
765 standard.
767 The options and the
768 .Ic -amin ,
769 .Ic -anewer ,
770 .Ic -cmin ,
771 .Ic -cnewer ,
772 .Ic -delete ,
773 .Ic -empty ,
774 .Ic -execdir ,
775 .Ic -follow ,
776 .Ic -fstype ,
777 .Ic -iname ,
778 .Ic -inum ,
779 .Ic -iregex ,
780 .Ic -links ,
781 .Ic -ls ,
782 .Ic -maxdepth ,
783 .Ic -mindepth ,
784 .Ic -mmin ,
785 .Ic -path ,
786 .Ic -print0 ,
787 .Ic -printx ,
788 .Ic -regex ,
790 .Ic -rm
791 primaries are extensions to
792 .St -p1003.2 .
794 Historically, the
795 .Fl d ,
796 .Fl h ,
798 .Fl x
799 options were implemented using the primaries
800 .Dq -depth ,
801 .Dq -follow ,
803 .Dq -xdev .
804 These primaries always evaluated to true.
805 As they were really global variables that took effect before the traversal
806 began, some legal expressions could have unexpected results.
807 An example is the expression
808 .Dq -print -o -depth .
809 As -print always evaluates to true, the standard order of evaluation
810 implies that -depth would never be evaluated.
811 This is not the case.
813 The operator
814 .Dq -or
815 was implemented as
816 .Dq -o ,
817 and the operator
818 .Dq -and
819 was implemented as
820 .Dq -a .
822 Historic implementations of the
823 .Ic -exec
825 .Ic -ok
826 primaries did not replace the string
827 .Dq {}
828 in the utility name or the
829 utility arguments if it had preceding or following non-whitespace characters.
830 This version replaces it no matter where in the utility name or arguments
831 it appears.
833 Support for
834 .Dq Ic -exec Ar ... No +
835 is consistent with
836 .Em IEEE PASC Interpretation 1003.2 #210 ,
837 though the feature originated in
838 .Tn SVR4 .
841 .Ic -delete
842 primary does not interact well with other options that cause the filesystem
843 tree traversal options to be changed.
844 .Sh HISTORY
845 A much simpler
846 .Nm find
847 command appeared in First Edition AT\*[Am]T Unix.
848 The syntax had become similar to the present version by
849 the time of the Fifth Edition.
850 .Sh BUGS
851 The special characters used by
853 are also special characters to many shell programs.
854 In particular, the characters
855 .Dq \&* ,
856 .Dq \&[ ,
857 .Dq \&] ,
858 .Dq \&? ,
859 .Dq \&( ,
860 .Dq \&) ,
861 .Dq \&! ,
862 .Dq \e ,
864 .Dq \&;
865 may have to be escaped from the shell.
867 As there is no delimiter separating options and file names or file
868 names and the
869 .Ar expression ,
870 it is difficult to specify files named
871 .Dq -xdev
873 .Dq \&! .
874 These problems are handled by the
875 .Fl f
876 option and the
877 .Xr getopt 3
878 .Dq --
879 construct.