summaryrefslogtreecommitdiff
path: root/usr.bin/find
AgeCommit message (Collapse)Author
2004-02-24- remove double spaces in the examplesJason McIntyre
- `W' before `X' - sync usage() ok millert@
2004-01-23Clarify find -X and Xr xargs(1). Based on a diff from and OK by jmc@Todd C. Miller
2003-09-26better realloc. ok deraadt@ henning@Ted Unangst
2003-09-02escape punctuation;Jason McIntyre
ok deraadt@
2003-07-06proto into scopeTheo de Raadt
2003-07-02protosTheo de Raadt
2003-06-26bring protypes into scope. this requires some quirky handling, but inTheo de Raadt
the end everything is much clearer; ok tedu (itojun might like to see how ifconfig looks after this)
2003-06-12Add an example using -prune at Theo's request.Todd C. Miller
2003-06-10mostly ansi cleanup; pval okTheo de Raadt
2003-06-03Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-03-07spelling errors/typosDavid Krause
ok jmc@
2002-11-14use $ or # before commands in examplesTheo de Raadt
2002-06-30remove local declaration of user_from_uid()/group_from_uid()Matthieu Herrb
ok millert@
2002-05-17The standard way to get info on symlinks is -L, not -h; Peter WernerTodd C. Miller
2002-05-03Fix pasto in -anewer and -cnewer options that caused them to behaveTodd C. Miller
as -newer; Dave Horsfall
2002-02-17Manual cleanup of remaining userland __P use (excluding packages maintained ↵Todd C. Miller
outside the tree)
2002-02-16Part one of userland __P removal. Done with a simple regexp with some minor ↵Todd C. Miller
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
2001-11-19kill more registersMike Pechkin
millert@ ok
2001-11-17o Block signals when running fts_read() so the SIGINFO handler willTodd C. Miller
be sure to have a valid "entry" pointer o In SIGINFO handler, do nothing if "entry" is NULL (Theo)
2001-11-16errno safety in signal handlerTheo de Raadt
2001-08-22expression is optionalTheo de Raadt
2001-08-22Since we're in pedant mode again, we might as well be thorough. It'sHugh Graham
bad form to assume that the absence of an expression will default to "-print", as one may still encounter versions of find where this is not the case. The examples given are all careful to use an explicit "-print", so follow their lead and mark the expression as a required field even though find will run without one.
2001-08-22o Expression is an optional argument to find(1);Heikki Korpela
noticed by Brian Poole <raj@cerias.purdue.edu> o File is not an optional argument o The section name referenced in beginning of the manual page is "operators" so don't confuse people by speaking about "operands" Ok aaron@
2001-07-12first pass at a -Wall cleanupTheo de Raadt
2001-03-14formatting error; m@procyon.comTheo de Raadt
2001-02-05short names by default; danh@wzrd.comTheo de Raadt
2000-11-10- Section shuffling: comply to the section ordering outlined in mdoc(7).Aaron Campbell
- Some .Nm trimming. - .Sh AUTHOR -> .Sh AUTHORS - Other miscellaneous fixes here and there.
2000-07-19new strtofflags/fflagstostrMichael Shalayeff
2000-07-10Xr chflags(1)Todd C. Miller
2000-07-08Add a -flags option similar to -perm but for filke flags (alaTodd C. Miller
chflags). Adapted from FreeBSD.
2000-06-07-iname support; karls@inet.noTheo de Raadt
2000-06-07option list MUST be sorted; previous commit broke "and"; karls@inet.noTheo de Raadt
2000-03-07Various cleanup.Aaron Campbell
2000-03-06Add HISTORY sections; from FreeBSD.Aaron Campbell
1999-12-04o use nanosecond precision with the -newer optionTodd C. Miller
o add -anewer and -cnewer options like GNU find.
1999-10-07Some Xr to find(1), locate(1), whatis(1), whereis(1), which(1), etc., asAaron Campbell
appropriate.
1999-10-04If we can't chdir to the root dir in -execdir, just return insteadTodd C. Miller
of generating an error. Most times this is just because the target is not a directory. Also close an fd leak introduced in the last commit.
1999-10-04Move the chdir/fchdir hack so that it is local to the -execdirTodd C. Miller
function, since that's the only place it needs to be. Doing it for each function caused problems with multiple directories.
1999-10-03Do not use FTS_CHDIRROOT flag as it is fatally flawed. Instead,Todd C. Miller
do the chdir ourselves. This fixes a problem with the -execdir option with multiple relative directories.
1999-06-05- remove trailing white spaceAaron Campbell
- remove arguments from .Os macros - remove arguments from .Nm macros, where appropriate - some more Dq/Sq/Ql insanity - still lots to do in the usr.bin tree... :/
1999-05-26arguments to -perm option are `[-]mode', not `[-mode]'; from NetBSDAaron Campbell
1999-05-02grammar; kwesterback@home.comAaron Campbell
1999-03-17Add -W option so -type W gets a chance to work.Marc Espie
1999-02-24-{a,c,m}min are extensions to posixTheo de Raadt
1999-01-04Correct ! handling in parens; dave@dtsp.co.nzTodd C. Miller
1998-11-11remove redundant .Pp macrosAaron Campbell
1998-10-04Take sizeof correct variable in readlink; martin@gbg.netman.seTodd C. Miller
1998-09-26usr.bin/ man page fixes, f-m.Aaron Campbell
1998-09-26more setmode() leaks -- kill 'em allTheo de Raadt
1998-08-11fix "find . !" coredump; thepish@freebsdTheo de Raadt