summaryrefslogtreecommitdiffstats
path: root/usr.bin/find/find.c
Commit message (Collapse)AuthorAgeFilesLines
* They add the following commands:phk2001-05-031-5/+12
| | | | | | | | | | | | | | | | | | | | | -anewer -cnewer -mnewer -okdir -newer[acm][acmt] With it, you can form queries like find . -newerct '1 minute ago' -print As an extra bonus, the program is ANSI-fied - the original version relies on some obscure features of K&R C. (This PR was submitted in 1999, and the submittor has kept the patch updated ever since, hats off for him guys, and how about you close a PR ??) PR: 9374 Submitted by: Martin Birgmeier <Martin.Birgmeier@aon.at>
* Implement the following options and primaries:knu2001-02-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | -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
* This patch adds the -mindepth and -maxdepth options to find(1), whichroberto2000-06-121-0/+14
| | | | | | | | | | | | behave as in GNU find (and of course as described in the manual page diff included). I think these options would be useful for some people. Some missing $FreeBSD$ tags are also added. The patch was slightly modified (send-pr mangling of TABS). PR: bin/18941 Submitted by: Ben Smithurst <ben@scientia.demon.co.uk>
* Fixed my English fixes.bde1998-11-291-1/+2
|
* Fixed style bugs and English in previous commit.bde1998-11-291-15/+16
|
* Added a sort option to find(1).wosch1998-11-291-1/+16
| | | | | The sort option make it possible to build the locate database without large (usually 20-100MB) temp files.
* Merge from Lite2 - use new getvfsbyname() and related changes.peter1997-03-111-7/+10
| | | | understand whiteouts (FTS_W from fts()).
* Remove trailing whitespace.rgrimes1995-05-301-5/+5
|
* Fix completely broken find behaviour:guido1995-02-271-0/+7
| | | | | | | a find -foo -o -bar would behave like find -bar. The same for -a This broke (among others) ./etc/security. Obtained from: NetBSD
* BSD 4.4 Lite Usr.bin Sourcesrgrimes1994-05-271-0/+192
OpenPOWER on IntegriCloud