freebsd-skq/usr.bin/find
Akinori MUSHA 7c1d4b3ae9 Implement the following options and primaries:
-E      Interpret regular expressions followed by -regex and -iregex op-
             tions as extended (modern) regular expressions rather than basic
             regular expressions (BRE's).  The re_format(7) manual page fully
             describes both formats.

     -iname pattern
             Like -name, but the match is case insensitive.

     -ipath pattern
             Like -path, but the match is case insensitive.

     -regex pattern
             True if the whole path of the file matches pattern using regular
             expression.  To match a file named ``./foo/xyzzy'', you can use
             the regular expression ``.*/[xyz]*'' or ``.*/foo/.*'', but not
             ``xyzzy'' or ``/foo/''.

     -iregex pattern
             Like -regex, but the match is case insensitive.

These are meant to be compatible with other find(1) implementations
such as GNU's or NetBSD's except regexp library differences.

Reviewed by:	sobomax, dcs, and some other people on -current
2001-02-23 16:20:55 +00:00
..
extern.h Implement the following options and primaries: 2001-02-23 16:20:55 +00:00
find.1 Implement the following options and primaries: 2001-02-23 16:20:55 +00:00
find.c Implement the following options and primaries: 2001-02-23 16:20:55 +00:00
find.h Implement the following options and primaries: 2001-02-23 16:20:55 +00:00
function.c Implement the following options and primaries: 2001-02-23 16:20:55 +00:00
ls.c This patch adds the -mindepth and -maxdepth options to find(1), which 2000-06-12 11:12:41 +00:00
main.c Implement the following options and primaries: 2001-02-23 16:20:55 +00:00
Makefile Switch over to using the new fflagstostr and strtofflags library calls. 2000-06-17 14:19:33 +00:00
misc.c This patch adds the -mindepth and -maxdepth options to find(1), which 2000-06-12 11:12:41 +00:00
operator.c This patch adds the -mindepth and -maxdepth options to find(1), which 2000-06-12 11:12:41 +00:00
option.c Implement the following options and primaries: 2001-02-23 16:20:55 +00:00