History log of /freebsd/usr.bin/find/find.1 (Results 201 – 225 of 254)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# c93e83fe 26-Nov-2002 Ruslan Ermilov <ru@FreeBSD.org>

mdoc(7) police: markup polishing.

Approved by: re


Revision tags: release/4.7.0_cvs
# 3c94f41f 27-Aug-2002 Philippe Charnier <charnier@FreeBSD.org>

Do not repeat the name of the flag in its description


# 4a0193d3 19-Aug-2002 Juli Mallett <jmallett@FreeBSD.org>

Add a unary -not operator ala -false and !, for sake of completeness.

Obtained from: OpenDarwin
MFC after: 1 week


# c9776a93 15-Aug-2002 Juli Mallett <jmallett@FreeBSD.org>

Oops, add -false to the operators list in the manual page for find(1), as added
in revision 1.17 of option.c.

MFC after: 1 week


Revision tags: release/4.6.2_cvs, release/4.6.2, release/4.6.1, release/4.6.0_cvs
# 126b0a63 26-Jun-2002 Tim J. Robbins <tjr@FreeBSD.org>

Indicate that the semicolon that terminates argument lists should be in
its own argument for -ok and -okdir.


# cc81b6b0 26-Jun-2002 Tim J. Robbins <tjr@FreeBSD.org>

Make it more obvious that the semicolon that terminates -exec and -execdir
argument lists must be in an argument by itself, not on the end of the
previous one.


# 5e25d888 02-Jun-2002 Tim J. Robbins <tjr@FreeBSD.org>

Support the SysV-style -exec utility args.. {} + function, required by
SUSv3. This is similar to find foo -print0 | xargs -0 utility args.


# e2f8ed51 29-May-2002 Ruslan Ermilov <ru@FreeBSD.org>

mdoc(7) police: markup nits.


# 46c2a2cf 16-May-2002 Tom Rhodes <trhodes@FreeBSD.org>

More consistancy. file system > filesystem


# e8937ba0 20-Apr-2002 Philippe Charnier <charnier@FreeBSD.org>

Use `The .Nm utility'


# a8d50686 10-Apr-2002 Tom Rhodes <trhodes@FreeBSD.org>

find.1 does not encourage users to DTRT when piping to xargs(1)

PR: 36602
Submitted by: Joshua Goodall <joshua@roughtrade.net>
No objections from: ru
MFC after: 2 days


# 7e7f3df6 01-Apr-2002 Giorgos Keramidas <keramida@FreeBSD.org>

Run find.1 through ispell.

PR: docs/36601
Submitted by: Joshua Goodall <joshua@roughtrade.net>
MFC after: 3 days


Revision tags: release/4.5.0_cvs, release/4.4.0_cvs
# d33321c0 20-Nov-2001 Ruslan Ermilov <ru@FreeBSD.org>

Add a missing comma.


# 9b4e871a 06-Oct-2001 David E. O'Brien <obrien@FreeBSD.org>

Document -depth


# adff4fca 14-Sep-2001 Ruslan Ermilov <ru@FreeBSD.org>

Bloat find(1) even more, and introduce the concept
of time units to be used with -[acm]time primaries.

Based on patch from Nils M Holm <nmh@t3x.org>.

PR: bin/29165, bin/30309


# 7fd5ee41 04-Sep-2001 Ruslan Ermilov <ru@FreeBSD.org>

The implementation of -flags was broken and did not match the (poorly)
documented behavior. Only a certain set of file flags were recognized,
and "no" flags did not match files that have correspondi

The implementation of -flags was broken and did not match the (poorly)
documented behavior. Only a certain set of file flags were recognized,
and "no" flags did not match files that have corresponding flags bits
turned off.

Fix and extend the -flags functionality as follows:

: -flags [-|+]<flags>,<notflags>
: The flags are specified using symbolic names (see chflags(1)).
: Those with the "no" prefix (except "nodump") are said to be
: <notflags>. Flags in <flags> are checked to be set, and flags in
: <notflags> are checked to be not set. Note that this is different
: from -perm, which only allows the user to specify mode bits that
: are set.
:
: If flags are preceded by a dash (``-''), this primary evaluates
: to true if at least all of the bits in <flags> and none of the bits
: in <notflags> are set in the file's flags bits. If flags are pre-
: ceded by a plus (``+''), this primary evaluates to true if any of
: the bits in <flags> is set in the file's flags bits, or any of the
: bits in <notflags> is not set in the file's flags bits. Otherwise,
: this primary evaluates to true if the bits in <flags> exactly match
: the file's flags bits, and none of the <flags> bits match those of
: <notflags>.

MFC after: 2 weeks

show more ...


# 208691fc 31-Aug-2001 Ruslan Ermilov <ru@FreeBSD.org>

Sort predicates.

PR: docs/30237


# 08274979 29-Jun-2001 Yaroslav Tykhiy <ytykhiy@gmail.com>

Clarify the feature that -exec parameters won't get
shell-expanded when the specified utility is run.

MFC after: 5 days


# bfd12208 16-May-2001 Ruslan Ermilov <ru@FreeBSD.org>

mdoc(7) police: fix markup.


# ea92232a 03-May-2001 Poul-Henning Kamp <phk@FreeBSD.org>

They add the following commands:
-anewer
-cnewer
-mnewer
-okdir
-newer[acm][acmt]

With it, you can form queries like

find . -newerct '1 minute ago' -print

As an extra bonus,

They add the following commands:
-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>

show more ...


Revision tags: release/4.3.0_cvs, release/4.3.0
# 94ad6032 24-Feb-2001 Ruslan Ermilov <ru@FreeBSD.org>

mdoc(7) police: restore correct order of references in the SEE ALSO.


# 7c1d4b3a 23-Feb-2001 Akinori MUSHA <knu@FreeBSD.org>

Implement the following options and primaries:

-E Interpret regular expressions followed by -regex and -iregex op-
tions as extended (modern) regular expressions rather than b

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

show more ...


# d0353b83 01-Feb-2001 Ruslan Ermilov <ru@FreeBSD.org>

mdoc(7) police: split punctuation characters + misc fixes.


# ed1a4621 23-Jan-2001 Peter Wemm <peter@FreeBSD.org>

Add the -empty flag, from OpenBSD. It returns true if the directory
is empty. There doesn't appear to be another easy way to do this.

mobile# mkdir foo
mobile# mkdir foo/bar
mobile# mkdir bar
mobi

Add the -empty flag, from OpenBSD. It returns true if the directory
is empty. There doesn't appear to be another easy way to do this.

mobile# mkdir foo
mobile# mkdir foo/bar
mobile# mkdir bar
mobile# find . -empty
./foo/bar
./bar

show more ...


# 1bfea903 16-Jan-2001 Ruslan Ermilov <ru@FreeBSD.org>

Prepare for mdoc(7)NG.


1234567891011