mkfs: symlink support
[minix.git] / commands / find / find.1
blobab0be0aba9c2ae15d52fb8c258197cebac9e78b8
1 .\"     $NetBSD: find.1,v 1.66 2007/07/19 07:49:30 daniel 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 July 19, 2007
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
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.
189 .It Ic -anewer Ar file
190 True if the current file has a more recent last access time than
191 .Ar file  .
192 .It Ic -atime Ar n
193 True if the difference between the file last access time and the time
195 was started, rounded up to the next full 24-hour period, is
196 .Ar n
197 24-hour periods.
198 .It Ic -cmin Ar n
199 True if the difference between the time of last change of file status
200 information and the time
202 was started, rounded up to the next full minute, is
203 .Ar n
204 minutes.
205 .It Ic -cnewer Ar file
206 True if the current file has a more recent last change time than
207 .Ar file  .
208 .It Ic -ctime Ar n
209 True if the difference between the time of last change of file status
210 information and the time
212 was started, rounded up to the next full 24-hour period, is
213 .Ar n
214 24-hour periods.
215 .It Ic -delete
216 Delete found files and/or directories.
217 Always returns True.
218 This executes from the current working directory as
220 recurses down the tree.
221 It will not attempt to delete a filename with a
222 .Dq \/
223 character in its pathname relative to
224 .Dq \.
225 for security reasons.
226 Depth-first traversal processing is implied by this option.
227 This can also be invoked as
228 .Ic -rm .
229 .It Ic -empty
230 True if the current file or directory is empty.
231 .\" The ".sp" below is probably not the right way to get the desired effect.
232 .It Ic -exec Ar utility Oo argument ... Oc No ;
233 .sp -1l
234 .It Ic -exec Ar utility Oo argument ... Oc No {} +
235 Execute the specified
236 .Ar utility
237 with the specified arguments.
238 The list of arguments is terminated by
239 .Dq Li \&;
241 .Dq Li \&+ .
242 .Ar utility
243 will be executed from the directory from which
245 was executed.
247 If terminated by a semicolon
248 .Pq Dq \&; ,
250 .Ar utility
251 is invoked once per path.
252 If the string
253 .Dq {}
254 appears anywhere in the utility name or the arguments,
255 it is replaced by the pathname of the current file.
257 If terminated by a plus sign
258 .Pq Dq \&+ ,
259 the pathnames for which the
260 primary is evaluated are aggregated into sets, and
261 .Ar utility
262 will be invoked once per set, similar to
263 .Xr xargs 1 .
264 If any invocation exits with non-zero exit status, then
266 will eventually do so as well, but this does not cause
268 to exit early.
269 The string
270 .Dq {}
271 must appear, and must appear last.
272 Each set is limitted to no more than 5,000 pathnames,
273 and is also limitted such that the invokation of
274 .Ar utility
275 does not exceed
276 .Dv ARG_MAX .
277 .It Ic -execdir Ar utility Oo argument ... Oc No ;
279 .Ic -execdir
280 primary is similar to the semicolon-terminated
281 .Pq Dq \&;
282 variant of the
283 .Ic -exec
284 primary, with the exception that
285 .Ar utility
286 will be executed from the directory that holds
287 the current file.
288 The filename substituted for the string
289 .Dq {}
290 is not qualified.
291 Set aggregation
292 .Pq Do \&+ Dc termination
293 is not supported.
294 .It Ic -exit Op Ar n
295 This primary causes
297 to stop traversing the filesystem and exit immediately if a
298 previous condition was met.
299 If no value is specified, the exit value will be 0, else
300 .Ar n .
301 Note that other primaries will be evaluated and acted upon before exiting.
302 .It Ic -false
303 This primary always evaluates to false.
304 This can be used following a primary that caused the
305 expression to be true to make the expression to be false.
306 This can be useful after using a
307 .Ic -fprint
308 primary so it can continue to the next expression (using an
309 .Cm -or
310 operator, for example).
311 .It Ic -flags Oo Fl Oc Ns Ar flags
313 .Ar flags
314 are preceded by a dash
315 .Pq Dq - ,
316 this primary evaluates to true
317 if at least all of the bits in
318 .Ar flags
319 are set in the file's flags bits.
321 .Ar flags
322 are not preceded by a dash, this primary evaluates to true if
323 the bits in
324 .Ar flags
325 exactly match the file's flags bits.
327 .Ar flags
329 .Dq none ,
330 files with no flags bits set are matched.
331 (See
332 .Xr chflags 1
333 for more information about file flags.)
334 .It Ic -follow
335 Follow symbolic links.
336 .It Ic -fprint Ar filename
337 This primary always evaluates to true.
338 This creates
339 .Ar filename
340 or overwrites the file if it already exists.
341 The file is created at startup.
342 It writes the pathname of the current file to this file, followed
343 by a newline character.
344 The file will be empty if no files are matched.
345 .It Ic -fstype Ar type
346 True if the file is contained in a file system of type
347 .Ar type .
349 .Xr sysctl 8
350 command can be used to find out the types of filesystems
351 that are available on the system:
352 .Bd -literal -offset indent
353 sysctl vfs.generic.fstypes
356 In addition, there are two pseudo-types,
357 .Dq local
359 .Dq rdonly .
360 The former matches any file system physically mounted on the system where
363 is being executed, and the latter matches any file system which is
364 mounted read-only.
365 .It Ic -group Ar gname
366 True if the file belongs to the group
367 .Ar gname  .
369 .Ar gname
370 is numeric and there is no such group name, then
371 .Ar gname
372 is treated as a group id.
373 .It Ic -iname Ar pattern
374 True if the last component of the pathname being examined
375 matches
376 .Ar pattern .
377 Case insensitive.
378 .It Ic -inum Ar n
379 True if the file has inode number
380 .Ar n  .
381 .It Ic -iregex Ar regexp
382 True if the path name of the current file matches the case-insensitive
383 basic regular expression
384 .Pq see Xr re_format 7
385 .Ar regexp .
386 This is a match on the whole path, not a search for the regular expression
387 within the path.
388 .It Ic -links Ar n
389 True if the file has
390 .Ar n
391 links.
392 .It Ic -rm
393 This is an alias for
394 .Ic -delete .
395 .It Ic -ls
396 This primary always evaluates to true.
397 The following information for the current file is written to standard output:
398 its inode number, size in 512-byte blocks, file permissions, number of hard
399 links, owner, group, size in bytes, last modification time, and pathname.
400 If the file is a block or character special file, the major and minor numbers
401 will be displayed instead of the size in bytes.
402 If the file is a symbolic link, the pathname of the linked-to file will be
403 displayed preceded by
404 .Dq -\*[Gt] .
405 The format is identical to that produced by
406 .Dq ls -dgils .
407 .It Ic -maxdepth Ar n
408 True if the current search depth is less than or equal to what is specified in
409 .Ar n .
410 .It Ic -mindepth Ar n
411 True if the current search depth is at least what is specified in
412 .Ar n .
413 .It Ic -mmin Ar n
414 True if the difference between the file last modification time and the time
416 was started, rounded up to the next full minute, is
417 .Ar n
418 minutes.
419 .It Ic -mtime Ar n
420 True if the difference between the file last modification time and the time
422 was started, rounded up to the next full 24-hour period, is
423 .Ar n
424 24-hour periods.
425 .It Ic -ok Ar utility Oo argument ... Oc No ;
427 .Ic -ok
428 primary is similar to the semicolon-terminated
429 .Pq Dq \&;
430 variant of the
431 .Ic -exec
432 primary, with the exception that
434 requests user affirmation for the execution of the utility by printing
435 a message to the terminal and reading a response.
436 If the response is other than
437 .Dq y ,
438 the command is not executed and the
439 .Ar -ok
440 primary evaluates to false.
441 Set aggregation
442 .Pq Do \&+ Dc termination
443 is not supported.
444 .It Ic -name Ar pattern
445 True if the last component of the pathname being examined matches
446 .Ar pattern  .
447 Special shell pattern matching characters
449 .Dq \&[ ,
450 .Dq \&] ,
451 .Dq \&* ,
452 .Dq \&?
454 may be used as part of
455 .Ar pattern  .
456 These characters may be matched explicitly by escaping them with a
457 backslash
458 .Pq Dq \e .
459 .It Ic -newer Ar file
460 True if the current file has a more recent last modification time than
461 .Ar file  .
462 .It Ic -nouser
463 True if the file belongs to an unknown user.
464 .It Ic -nogroup
465 True if the file belongs to an unknown group.
466 .It Ic -path Ar pattern
467 True if the pathname being examined matches
468 .Ar pattern  .
469 Special shell pattern matching characters
471 .Dq \&[ ,
472 .Dq \&] ,
473 .Dq \&* ,
475 .Dq \&?
477 may be used as part of
478 .Ar pattern  .
479 These characters may be matched explicitly by escaping them with a
480 backslash
481 .Pq Dq \e .
482 Slashes
483 .Pq Dq /
484 are treated as normal characters and do not have to be
485 matched explicitly.
486 .It Ic -perm Oo Fl Oc Ns Ar mode
488 .Ar mode
489 may be either symbolic (see
490 .Xr chmod  1  )
491 or an octal number.
492 If the mode is symbolic, a starting value of zero is assumed and the
493 mode sets or clears permissions without regard to the process' file mode
494 creation mask.
495 If the mode is octal, only bits 07777
496 .Pf ( Dv S_ISUID
498 .Dv S_ISGID
500 .Dv S_ISTXT
502 .Dv S_IRWXU
504 .Dv S_IRWXG
506 .Dv S_IRWXO )
507 of the file's mode bits participate
508 in the comparison.
509 If the mode is preceded by a dash
510 .Pq Dq - ,
511 this primary evaluates to true
512 if at least all of the bits in the mode are set in the file's mode bits.
513 If the mode is not preceded by a dash, this primary evaluates to true if
514 the bits in the mode exactly match the file's mode bits.
515 Note, the first character of a symbolic mode may not be a dash
516 .Pq Dq - .
517 .It Ic -print
518 This primary always evaluates to true.
519 It prints the pathname of the current file to standard output, followed
520 by a newline character.
521 If none of
522 .Ic -exec ,
523 .Ic -exit ,
524 .Ic -fprint ,
525 .Ic -ls ,
526 .Ic -ok ,
527 .Ic -print0 ,
529 .Ic -printx
530 is specified, the given expression shall be effectively replaced by
531 .Cm \&( Ns Ar given\& expression Ns Cm \&)
532 .Ic -print .
533 .It Ic -print0
534 This primary always evaluates to true.
535 It prints the pathname of the current file to standard output, followed
536 by a null character.
537 .It Ic -printx
538 This primary always evaluates to true.
539 It prints the pathname of the current file to standard output,
540 with each space, tab, newline, backslash, dollar sign, and single,
541 double, or back quotation mark prefixed by a backslash, so the output of
542 .Nm find
543 can safely be used as input to
544 .Nm xargs .
545 .It Ic -prune
546 This primary always evaluates to true.
547 It causes
549 to not descend into the current file.
550 Note, the
551 .Ic -prune
552 primary has no effect if the
553 .Fl d
554 option was specified.
555 .It Ic -regex Ar regexp
556 True if the path name of the current file matches the case-sensitive
557 basic regular expression
558 .Pq see Xr re_format 7
559 .Ar regexp .
560 This is a match on the whole path, not a search for the regular expression
561 within the path.
562 .It Ic -size Ar n Ns Op Cm c
563 True if the file's size, rounded up, in 512-byte blocks is
564 .Ar n  .
566 .Ar n
567 is followed by a
568 .Dq c ,
569 then the primary is true if the file's size is
570 .Ar n
571 bytes.
572 .It Ic -type Ar t
573 True if the file is of the specified type.
574 Possible file types are as follows:
576 .Bl -tag -width flag -offset indent -compact
577 .It Cm b
578 block special
579 .It Cm c
580 character special
581 .It Cm d
582 directory
583 .It Cm f
584 regular file
585 .It Cm l
586 symbolic link
587 .It Cm p
588 FIFO
589 .It Cm s
590 socket
591 .It Cm W
592 whiteout
593 .It Cm w
594 whiteout
597 .It Ic -user Ar uname
598 True if the file belongs to the user
599 .Ar uname  .
601 .Ar uname
602 is numeric and there is no such user name, then
603 .Ar uname
604 is treated as a user id (and considered a numeric argument).
605 .It Ic -xdev
606 This primary always evaluates to true.
607 It causes find not to descend past directories that have a different
608 device ID (st_dev, see
609 .Xr stat 2
610 S5.6.2 [POSIX.1]).
613 All primaries which take a numeric argument allow the number to be
614 preceded by a plus sign
615 .Pq Dq +
616 or a minus sign
617 .Pq Dq \- .
618 A preceding plus sign means
619 .Dq more than n ,
620 a preceding minus sign means
621 .Dq less than n ,
622 and neither means
623 .Dq exactly n .
624 .Sh OPERATORS
625 The primaries may be combined using the following operators.
626 The operators are listed in order of decreasing precedence.
627 .Bl -tag -width (expression)
628 .It Cm \&( Ar expression Cm \&)
629 This evaluates to true if the parenthesized expression evaluates to
630 true.
632 .It Cm \&! Ar expression
633 This is the unary
634 .Tn NOT
635 operator.
636 It evaluates to true if the expression is false.
638 .It Ar expression Cm -and Ar expression
639 .It Ar expression expression
641 .Cm -and
642 operator is the logical
643 .Tn AND
644 operator.
645 As it is implied by the juxtaposition of two expressions it does not
646 have to be specified.
647 The expression evaluates to true if both expressions are true.
648 The second expression is not evaluated if the first expression is false.
650 .It Ar expression Cm -or Ar expression
652 .Cm -or
653 operator is the logical
654 .Tn OR
655 operator.
656 The expression evaluates to true if either the first or the second expression
657 is true.
658 The second expression is not evaluated if the first expression is true.
661 All operands and primaries must be separate arguments to
662 .Nm  .
663 Primaries which themselves take arguments expect each argument
664 to be a separate argument to
665 .Nm  .
666 .Sh EXIT STATUS
669 utility normally exits 0 on success, and exits with 1 under certain
670 internal error conditions.
671 If any invokations of
672 .Dq Ic -exec Ar ... No +
673 primaries return non-zero exit-status, then
675 will do so as well.
676 .Sh EXAMPLES
677 The following examples are shown as given to the shell:
678 .Bl -tag -width findx
679 .It Li "find  /  \e!  -name  \*q*.c\*q  -print"
680 Print out a list of all the files whose names do not end in
681 .Dq \&.c .
682 .It Li "find  /  -newer  ttt  -user  wnj  -print"
683 Print out a list of all the files owned by user
684 .Dq wnj
685 that are newer than the file
686 .Dq ttt .
687 .It Li "find  /  \e!  \e(  -newer  ttt  -user  wnj  \e)  -print"
688 Print out a list of all the files which are not both newer than
689 .Dq ttt
690 and owned by
691 .Dq wnj .
692 .It Li "find  /  \e(  -newer  ttt  -or  -user wnj  \e)  -print"
693 Print out a list of all the files that are either owned by
694 .Dq wnj
695 or that are newer than
696 .Dq ttt .
697 .It Li "find  /  \e(  -newer  ttt  -or  -user wnj  \e)  -exit 1"
698 Return immediately with a value of 1 if any files are found that are either
699 owned by
700 .Dq wnj
701 or that are newer than
702 .Dq ttt ,
703 but do not print them.
704 .It Li "find  /  \e(  -newer  ttt  -or  -user wnj  \e)  -ls -exit 1"
705 Same as above, but list the first file matching the criteria before exiting
706 with a value of 1.
708 .Sh SEE ALSO
709 .Xr chflags 1 ,
710 .Xr chmod 1 ,
711 .Xr locate 1 ,
712 .Xr xargs 1 ,
713 .Xr stat 2 ,
714 .Xr fts 3 ,
715 .Xr getgrent 3 ,
716 .Xr getpwent 3 ,
717 .Xr strmode 3 ,
718 .Xr symlink 7 ,
719 .Xr sysctl 8
720 .Sh STANDARDS
723 utility syntax is a superset of the syntax specified by the
724 .St -p1003.2
725 standard.
727 The options and the
728 .Ic -amin ,
729 .Ic -anewer ,
730 .Ic -cmin ,
731 .Ic -cnewer ,
732 .Ic -delete ,
733 .Ic -empty ,
734 .Ic -execdir ,
735 .Ic -follow ,
736 .Ic -fstype ,
737 .Ic -iname ,
738 .Ic -inum ,
739 .Ic -iregex ,
740 .Ic -links ,
741 .Ic -ls ,
742 .Ic -maxdepth ,
743 .Ic -mindepth ,
744 .Ic -mmin ,
745 .Ic -path ,
746 .Ic -print0 ,
747 .Ic -printx ,
748 .Ic -regex ,
750 .Ic -rm
751 primaries are extensions to
752 .St -p1003.2 .
754 Historically, the
755 .Fl d ,
756 .Fl h ,
758 .Fl x
759 options were implemented using the primaries
760 .Dq -depth ,
761 .Dq -follow ,
763 .Dq -xdev .
764 These primaries always evaluated to true.
765 As they were really global variables that took effect before the traversal
766 began, some legal expressions could have unexpected results.
767 An example is the expression
768 .Dq -print -o -depth .
769 As -print always evaluates to true, the standard order of evaluation
770 implies that -depth would never be evaluated.
771 This is not the case.
773 The operator
774 .Dq -or
775 was implemented as
776 .Dq -o ,
777 and the operator
778 .Dq -and
779 was implemented as
780 .Dq -a .
782 Historic implementations of the
783 .Ic -exec
785 .Ic -ok
786 primaries did not replace the string
787 .Dq {}
788 in the utility name or the
789 utility arguments if it had preceding or following non-whitespace characters.
790 This version replaces it no matter where in the utility name or arguments
791 it appears.
793 Support for
794 .Dq Ic -exec Ar ... No +
795 is consistent with
796 .Em IEEE PASC Interpretation 1003.2 #210 ,
797 though the feature originated in
798 .Tn SVR4 .
801 .Ic -delete
802 primary does not interact well with other options that cause the filesystem
803 tree traversal options to be changed.
804 .Sh HISTORY
805 A much simpler
806 .Nm find
807 command appeared in First Edition AT\*[Am]T Unix.
808 The syntax had become similar to the present version by
809 the time of the Fifth Edition.
810 .Sh BUGS
811 The special characters used by
813 are also special characters to many shell programs.
814 In particular, the characters
815 .Dq \&* ,
816 .Dq \&[ ,
817 .Dq \&] ,
818 .Dq \&? ,
819 .Dq \&( ,
820 .Dq \&) ,
821 .Dq \&! ,
822 .Dq \e ,
824 .Dq \&;
825 may have to be escaped from the shell.
827 As there is no delimiter separating options and file names or file
828 names and the
829 .Ar expression ,
830 it is difficult to specify files named
831 .Dq -xdev
833 .Dq \&! .
834 These problems are handled by the
835 .Fl f
836 option and the
837 .Xr getopt 3
838 .Dq --
839 construct.