]>
git.saurik.com Git - apple/shell_cmds.git/blob - find/main.c
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Cimarron D. Taylor of the University of California, Berkeley.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 "@(#) Copyright (c) 1990, 1993, 1994\n\
40 The Regents of the University of California. All rights reserved.\n";
45 static char sccsid
[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
49 #include <sys/cdefs.h>
50 __FBSDID("$FreeBSD: src/usr.bin/find/main.c,v 1.15 2003/06/14 13:00:21 markm Exp $");
52 #include <sys/types.h>
68 time_t now
; /* time find was run */
69 int dotfd
; /* starting directory */
70 int ftsoptions
; /* options for the ftsopen(3) call */
71 int isdeprecated
; /* using deprecated syntax */
72 int isdepth
; /* do directories on post-order visit */
73 int isoutput
; /* user specified output operator */
74 int issort
; /* do hierarchies in lexicographical order */
75 int isxargs
; /* don't permit xargs delimiting chars */
76 int mindepth
= -1, maxdepth
= -1; /* minimum and maximum depth */
77 int regexp_flags
= REG_BASIC
; /* use the "basic" regexp by default*/
79 static void usage(void);
82 main(int argc
, char *argv
[])
87 (void)setlocale(LC_ALL
, "");
89 (void)time(&now
); /* initialize the time-of-day */
93 ftsoptions
= FTS_NOSTAT
| FTS_PHYSICAL
;
94 while ((ch
= getopt(argc
, argv
, "EHLPXdf:sx")) != -1)
97 regexp_flags
|= REG_EXTENDED
;
123 ftsoptions
|= FTS_XDEV
;
134 ftsoptions
|= FTS_COMFOLLOW
;
136 ftsoptions
&= ~FTS_PHYSICAL
;
137 ftsoptions
|= FTS_LOGICAL
;
141 * Find first option to delimit the file list. The first argument
142 * that starts with a -, or is a ! or a ( must be interpreted as a
143 * part of the find expression, according to POSIX .2.
145 for (; *argv
!= NULL
; *p
++ = *argv
++) {
146 if (argv
[0][0] == '-')
148 if ((argv
[0][0] == '!' || argv
[0][0] == '(') &&
157 if ((dotfd
= open(".", O_RDONLY
, 0)) < 0)
160 exit(find_execute(find_formplan(argv
), start
));
166 (void)fprintf(stderr
,
167 "usage: find [-H | -L | -P] [-EXdsx] [-f file] [file ...] [expression]\n");