Fix Savannah bug #22056, -Xtime tests are off by one second.
[findutils.git] / NEWS
blobe139d3c67c8ddac665c613811e9eabc3552d57f1
1 GNU findutils NEWS - User visible changes.      -*- outline -*- (allout)
3 * Major changes in release 4.3.13-CVS
5 ** Bug Fixes
7 #22057: Actually rename the old locate database to the new one
8 atomically, instead of just claiming the rename is atomic in a
9 comment.
11 #22056: -Xtime tests are off by one second (e.g. rm -f x; touch x;
12 find x -mtime 0 should print x).
14 #21960: xargs should collect the exit status of child processes even if
15 the total count of unreaped children has not yet reached the maximum
16 allowed. 
18 ** Documentation Fixes
20 Documented various useful techniques with invoking "sh -c" from
21 xargs in the Texinfo documentation. 
23 * Major changes in release 4.3.12, 2007-12-19
25 ** Bug Fixes
27 #15384: Find misbehaves when parent directory is not readable. 
29 ** Documentation Fixes
31 More examples in the xargs manual page, including a portable analogue
32 for BSD's "xargs -o".
34 ** Translations
36 Updated translations: Polish, Dutch, Portuguese, Swedish, Vietnamese.
39 * Major changes in release 4.3.11, 2007-12-02
41 ** Functional changes
43 When the POSIXLY_CORRECT environment variable is set, "find -perm
44 +a+w" is rejected as invalid.  Some other similar mode strings
45 starting with '+' which are not valid in POSIX are also rejected.
47 The -prune action now always evaluates as true (this is also a
48 bugfix).
51 ** Bug Fixes
53 #21568: Switch to checking the gnulib code out with native git, not
54 CVS.  This affects mainly those who check findutils code out of CVS.
55 This is not the first time this bug has been fixed (the previous fix
56 used "cvs update -D", which git-cvspserver silently does not
57 support). 
59 #21039: Setting the POSIXLY_CORRECT environment variable now turns off
60 warnings by default, because POSIX requires that only diagnostic
61 messages (and -ok prompts) are printed on STDERR, and diagnostic
62 messages must also result in a nonzero exit status.  
64 #20970: Trailing slash on directory arguments breaks -name.  "find
65 foo/ -name foo" now correctly matches foo and printf foo/.  See POSIX
66 interp http://www.opengroup.org/austin/interps/uploads/40/14959/AI-186.txt
68 #20865: Using both -delete and -prune without explicitly using -depth
69 is now an error.  Traditionally, -delete has always turned -depth on
70 anyway, so this is not a functional change.   However, using -depth
71 (implicitly or explicitly) makes -prune a no-op.  This change is
72 intended to avoid nasty surprises for people who test with
73 "-print" and then change it to "-delete" when they are happy.
75 #20803: POSIX requires that -prune always returns true.  Previously it
76 returned false when -depth was in effect and true otherwise.
78 #20802: If -delete fails, find's exit status will now be non-zero.
79 However, find still skips trying to delete ".".
81 ** Documentation Fixes
82 #21635: Some of the documentation files had missing copying
83 conditions.   The missing files now have copying headers, and these
84 are compatible with each other (GNU FDL 1.2).
86 #21634: No copy of FDL 1.2 included with the source code
88 #21633: Missing copyright/license header in some documentation.
90 #21628: find -perm /000 matches all files rather than none, since
91 findutils-4.3.3.  The Texinfo documentation is now consistent with the
92 manual page on this point.
94 #21270: Formatting fixes to the xargs.1 manual page, including making
95 options bold instead of italic and making OPTIONS a section header
96 rather than a subsection.
98 * Major changes in release 4.3.10, 2007-11-13
100 ** Bug Fixes
102 #21568: findutils gnulib code does not match the date in
103 import-gnulib.config.  We now check out the gnulib code via
104 git-cvs-pserver.  
106 * Major changes in release 4.3.9, 2007-11-11
108 ** Licensing
110 Findutils version 4.3.9 is released under version 3 of the GNU General
111 Public License.
113 ** Bug Fixes
115 #20834: Avoid segmentation violation for -execdir when $PATH is
116 unset.  Assume that the PATH is safe in this situation.
118 #20310: configure uses hosts's support status for "sort -z" when
119 generating the updatedb script for use on the target.  This is
120 inappropriate when cross-compiling, so avoid doing that.
122 #20263: Compilation fix for DEC Alpha OSF/1 cc, which forbids the
123 ordering comparison of function pointers.
125 #20139: find -[acm]time -N (wrongly) includes files from N days ago,
126 as well as (correctly) from less than N days ago.
128 #20273: When xargs is successful without consuming all of stdin (for
129 example, with the -E option), and stdin is seekable, xargs now
130 correctly restores the file position, even on platforms where exit()
131 does not follow the POSIX rules of doing likewise.  Likewise for find
132 (for example, with the -ok action).
134 #20547: The version information printed by find, xargs, locate,
135 updatedb, frcode and code now complies with the GNU Project's coding
136 standards.
138 #20662: Avoid memory leak in find -name and other places affected by
139 gnulib dirname module.  The leak had been present since 4.3.1.
141 #20751: Avoid memory corruption in find -ls that has been present
142 since 4.3.1.
144 #20871: Assertion failure introduced in 4.3.3, when oldfind is invoked
145 in a directory where the parent directory lacks search permission.
147 ** Enhancements
149 #20594: Allow fine-tuning of the default argument size used by xargs
150 and find at ./configure time.
152 #20688: The warning printed by -name or -iname when the pattern to
153 match contains a slash can now be silenced by -nowarn.  This warning
154 was originally introduced unconditionally in 4.2.21.
156 Translation of locate --limit problems is improved.
158 POSIX will standardise -path, so the documentation no longer claims
159 that -wholename is the 'canonical' test, and -ipath no longer
160 generates a warning.
162 ** Documentation Fixes
164 Point out more explicitly that the subsecond timestamp support
165 introduced by findutils-4.3.3 introduces a change in the format of
166 several fields.
168 Also explain that when reporting a bug, you should check the most
169 recent findutils release first.
171 Introduced doc/find-maint.texi, a maintenance manual for findutils.
173 Added an extra worked example for find (copying a subset of files).
175 The locate command's manual page now has a HISTORY section.
177 #20951: Very bad/unclear/confusing documentation of security checks in
178 find -execdir
180 #20865: Better documentation on the fact that -delete implies -depth 
181 and that -delete interacts badly with -prune.
183 #20552: Fixed typos, formatting and section ordering issues in the
184 find manual page.
186 #20529: removed spurious 'o' in description of "xargs -a" in
187 doc/find.texi. 
189 #20232: The --max-database-age option of locate was added in release
190 4.3.3, but this file (NEWS) did not previously mention this fact.
192 ** Translations
194 Updated Dutch translation.
197 * Major changes in release 4.3.8, 2007-06-12
199 ** Bug Fixes
201 #20157: Avoid segfault in locate when run as root.  This is caused by
202 a buffer overrun, but at this time no exploit mechanism is known.
204 * Major changes in release 4.3.7, 2007-06-09
206 ** Functional changes
208 Locate can now read old-format locate databases generated on machines
209 with a different byte order.  It does this by guessing the byte order,
210 so the result is not completely reliable.  If you need to share
211 databases between machines of different architectures, you should use
212 the LOCATE02 format (which has other advantages, as explained in the
213 documentation).
215 ** Security Fixes
217 #20014: Findutils-4.3.7 includes a patch for a potential security
218 problem in locate.  When locate read an old-format database, it read
219 file names into a fixed-length buffer allocated on the heap without
220 checking for overflow.  Although overflowing a heap buffer is often
221 somewhat safer than overflowing a buffer on the stack, this bug still
222 has potential security implications.
224 This bug also affected the following previous findutils releases:
226  - All releases prior to 4.2.31
227  - Findutils 4.3.0 to 4.3.6.
229 This bug has been assigned CVE number CVE-2007-2452.
231 ** Bug Fixes
233 #20128: Fix compilation error of find/tree.c on AIX with GCC.
235 #20005: Tests -mtime -n and -mtime +n incorrectly treated like -mtime n.
237 #19983: include_next causes compilation failure in findutils 4.3.6 on
238 non-GCC compilers 
240 #19981: Don't call setgroups if the function isn't available.  This
241 fixes Savannah bug# 19981.
243 #19980: Don't use the functions putw() or getw() since these are not
244 in current POSIX.  Use the gnulib version of wcwidth() where the
245 system does not provide it.
247 #19979: Compilation errors on BeOS
249 #19970: Cannot cast from pointer to bool using gnulib's <stdbool.h> 
251 #19967: Use of __attribute((__noreturn__)) makes compilation fail with
252 some non-GCC compilers  
254 #19966: find should link against -lm for modf() and fabs()
256 #19965: Compilation failure on OSF/1 4.0; non-declaration of uintmax_t 
258 #19948: Assertion failure O_NOFOLLOW != 0 on IRIX 6.5
260 #19871: Typos in find.1 
262 #19596: Fixed this bug again, this time in the Texinfo manual (the
263 discussion should compare %b with %s/512, not %s/1024).
265 #19416: _FORTIFY_SOURCE warn_unused_result warnings
267 * Major changes in release 4.3.6, 2007-05-21
269 ** Bug Fixes
271 #19948: Fixed an assertion failure on IRIX 6.5 (O_NOFOLLOW is defined
272 to 0 there).
274 #19923: Fixed an array overrun in groups[] array of 'locate' when run by
275 or as root.  This bug appears not to be exploitable.  If locate is not
276 installed setuid, the bug is not exploitable.  For setuid
277 installations, it is concievable that there could be an information
278 leak if the user uses the -d option or the -e option, though the
279 maintainer has been unable to provoke this on an x86 system.
281 #19871: Spurious .R directives in manpage produced error messages from
282 GNU troff.  This is now fixed (they are corrected to .B).
284 #19416: The result of I/O operations in print-related actions is now
285 checked, and failures are reported.  Any failure will cause find's
286 exit status to be nonzero.   The predicate itself will continue to
287 return true.
289 ** Compilation Fixes
291 A variety of changes were made to allow compilation to succeed on
292 non-GNU systems.
294 #19983: Now compiles on DEC C V5.9-005 on Digital UNIX V4.0 (or at
295 least, should).
297 #19970: Compile correctly on C89 systems where the "_Bool" type is not
298 provided, taking into account the limitations of the gnulib
299 replacement for stdbool.h.
301 #19967: Build successfully with C compilers that don't support the GCC
302  construct __attribute__((__noreturn__)).
304 #19966: Findutils should now build on systems which have the modf()
305 and fabs() functions in the maths library, -lm.  This includes some
306 versions of HP-UX and Solaris.  
308 #19965: Fixed a compilation failure on OSF/1 4.0 (no definition of the
309 type uintmax_t).
312 * Major changes in release 4.3.5, 2007-05-05
314 ** Functional changes
316 Updatedb can now support he generation of file name databases which
317 are compatible with slocate.  For some time, GNU locate has been able
318 to read these.
320 The /proc filesystem is excluded from the locate database (by
321 default; change PRUNEPATHS to modify this behaviour).
323 ** Bug Fixes
325 #19806: The -samefile predicate might get fooled by inode reuse.  We
326 now hold open a file descriptor on the reference file to prevent this.
328 #19768: Better detection of corrupted old-style locate databases
329 (e.g. if the database is too short to include a complete bigram
330 table).
332 #19766: The frcode and code programs now detect write errors more
333 reliably.
335 #19371: Fix compilation failure on systems which #define open to
336 open64 (and similarly with the close system call).  This fixes
337 Savannah bug #19371, affecting AIX 5.3.
339 #19658: When cross-compiling, "make clean" no longer deletes the
340 generated file doc/regexprops.texi, because there is no way to
341 regenerate it.
343 #19391: When xargs knows that the system's actual exec limit is larger
344 than the compiled-in ARG_MAX, use the system's limit without
345 generating an assertion failure.  
347 #18203: A duplicate report of bug #17478.
349 #17478: Error messages from find can garble the console.
351 #16378: Assertion failure if stat() returns 00000 as the mode
352 of a file.  This apparently can happen occasionally with broken NFS
353 servers.
355 #11668: FreeBSD extensions for time specification are now
356 implemented.  In fact, these were included in findutils-4.3.3.  The
357 change was listed as a functional change (whcih it is) and this bug
358 report was not mentioned.
360 ** Documentation Fixes
362 The locatedb.5 manpage now documents the (default) LOCATE02 format
363 more clearly, and also documents the slocate database format.
365 The maximum and default values applying to the -s option of xargs are
366 now documented more clearly in the manual page.
368 * Major changes in release 4.3.4, 2007-04-21
370 ** Bug Fixes
372 #19634: Test suite now passes (again) if "." is on your $PATH.
374 #19619: Findutils builds once again on Cygwin.
376 #19617: Nonexistent start points are (once again) diagnosed in
377 ftsfind.  This bug affected only findutils-4.3.3.
379 #19616: Fix leaf optimisation and loop detection (which were
380 unreliable in findutils 4.3.3).  This bug affected only
381 findutils-4.3.3.
383 #19615: find --version no longer claims to be using FTS_CWDFD when it
384 isn't.  This bug affected only findutils-4.3.3.
386 #19613: "find -L . -type f" no longer causes an assertion failure when
387 it encounters a symbolic link loop.  This bug affected only
388 findutils-4.3.3.
390 #19605: Issue an error message (and later return nonzero exit status)
391  if a symbolic link loop was encountered during directory traversal.
393 #19484: bigram.c and code.c fail if the first pathname recorded begins
394 with a space
396 #19483: Inconsistent option highlighting in updatedb manpage
398 #18414: Tests for "find -readable" are skipped for the superuser, as
399  on some systems (e.g. Cygwin with an Administrative user) users can
400  read mode-000 files.
402 ** Translations
404 Findutils 4.3.4 includes a translation for the Ukranian language.
407 * Major changes in release 4.3.3, 2007-04-15
409 Fiundutils-4.3.3 was released on 2007-04-15.
411 ** Bug Fixes
413 #19596: Correct the comparison in the find manpage between %b and %s
414 (the divisor is 512 not 1024).
416 #18714: In the POSIX locale, vertical tabs and form feeds are not
417 field separators.
419 #18713: Quoted but empty arguments which occur last on an xargs input
420 line are no longer ignored, but instead produce an empty argument.
422 #18554: Documented the construct  -exec sh -c 'foo "$@" bar' {} +
424 #18466: we now avoid this bug by limiting "-execdir ...+"
425 to just one argument for the time being.  There is a performance
426 penalty for doing this.  We hope to make a better fix in a later
427 release.
429 #18384: excess bracket in xargs --help
431 #18320: Zero bytes in input should give warning
433 #17437: Corrected the handling of X in symbolic permissions (such
434 as-u+w,a+X).  This change actually occurred in findutils-4.3.2, but
435 the NEWS file for that release didn't mention it.
437 #17396: find -mtime -atime -ctime does not support fractional part
438 (see "Functional changes" below)
440 #14748: find -perm /zzz gives wrong result when zzz evaluates to an
441  all-zero mask
443 #14535: correctly support case-folding in locate (that is, "locate
444 -i") for multibyte character environments such as UTF-8.  Previously,
445 if your search string contained a character which was outside the
446 single-byte-encoding range for UTF-8 for example, then the
447 case-folding behaviour failed to work and only exact matches would be
448 returned.
452 ** Functional changes
454 The -printf action (and similar related actions) now support %S,
455 which is a measurement of the sparseness of a file.
457 The test "-perm /000" now matches all files instead of no files.  For
458 over a year find has been issuing warning messages indicating that
459 this change will happen.  We now issue a warning indicating that the
460 change has already happened (in 4.3.x only, there is no plan to make
461 this change in the 4.2.x series).
463 The tests -newer, -anewer, -cnewer, -mtime, -atime, -ctime, -amin,
464 -cmin, -mmin and -used now support sub-second timestamps, including
465 the ability to specify times with non-integer arguments.
467 The -printf format specifiers also support sub-second timestamps:
468   atime   ctime  mtime
469   %a      %c     %t
470   %AS     %CS    %TS 
471   %AT     %CT    %TT 
472   %A+     %C+    %T+ 
473   %AX     %CX    %TX 
476 The new test -newerXY supports comparison between status times for
477 files.  One of the status times for a file being considered (denoted
478 X) is checked against a reference time (denoted Y) for the file whose
479 name id the argument.  X and Y can be:
481    a    Access time
482    B    Birth time (st_birthtime, currently unsupported)
483    c    Change time
484    m    Modification time
485    t    Valid only for the reference time; instead of comparison
486         against a file status time, the argument is a time string.
487         Not yet supported.
489 For example, -newermm is equivalent to -newer, and -neweram is true if
490 the file being considered was accessed more recently than the
491 reference file was modified.  The -newerXY test supports subsecond
492 timestamps where these are available.  The X=B variant is not yet
493 implemented.
495 If you configure the source code and then run the tests with "make
496 check", the test suite fails rather than defaulting to testing the
497 system binaries.
499 A new option, --max-database-age, has been added to locate.   
502 * Major changes in release 4.3.2, 2006-11-25
504 ** Bug Fixes
506 #18222: find -printf '%H %P' once again prints the right result if
507 more than one start point was given on the command line.
509 #17782: find -execdir now correctly puts the prefix "./" before the
510 expansion of "{}" rather than at the start of the argument it appears
511 in.  Please note that if you use the -exec or -execdir actions with a
512 shell, then you may be vulnerable to shell code injection attacks, so
513 don't do that.  It's not a security defect in find - you should not be
514 passing untrusted data (such as file names chosen by other people) to
515 the shell.
517 #17490: find  -regex generated a segfault in findutils-4.3.1, but this
518  is fixed in findutils-4.3.2.
520 #17477: find -printf '%' (that is, where the format has a trailing %)
521 now generates an error message.
523 #17372: The fts-based find executable (the default configuration uses
524 fts) is now much faster when -maxdepth is used on filesystems with
525 high fanouts.
527 #15531: The -prune action now behaves correctly when applied to a file.
529 ** Functional changes
531 The slocate database format is now supported.  Preliminary changes
532 intended to eventually allow setuid operation of locate have also been
533 made.  For the moment, please don't install GNU locate as a
534 set-user-ID program (except for testing purposes; if you do so, please
535 make sure that untrusted users cannot execute the set-user-ID locate
536 program).
538 Use of an slocate database which was built with a nonzero security
539 mode (at the moment, GNU updatedb will not do this) forces locate's
540 "-e" option to be turned on, which has an effect on the "-S" option
541 which is probably surprising for most users.
544 ** Documentation Fixes
546 The global effect of options (other than -daystart and -follow) is now
547 explained more clearly in the manual page.   Savannah bug #15360.
550 * Major changes in release 4.3.1, 2006-08-06
552 ** Bug Fixes
554 Find now follows POSIX rules for determining where directories end and
555 expressions start.  This means that "find \(1 \!2 \, \)" now searches
556 in the four named directories, rather than trying to parse an
557 expression. (Savannah bug #15235).
559 You now get a more helpful error message when you use command lines
560 which have missing expressions, such as 
561       find . ( )
562       find . !
563       find . -a
564       find . \( -not \)
565       find . \( -true -a
567 Savannah bug #15800: If find finds more subdirectories within a parent
568 directory than it previously expected to based on the link count of
569 the parent, the resulting error message now gives the correct
570 directory name (previously an error message was issued but it
571 specified the wrong directory).
573 Savannah bug #16738: "find .... -exec ... {} +" now works if you have
574 a large environment and many files must be passed to the -exec
575 action.  The same problem affected the -execdir action, though since
576 the number of files in a given directory will normally be smaller, the
577 problem was worse for -exec.
579 Savannah bug #16579: Updatedb now works if it is running as a user
580 whose login shell is not actually a shell.
582 There have also been a number of documentation improvements (includng
583 Savannah bug #16269).
585 ** Functional changes
587 For find, debug output can now be enabled at runtime with the -D
588 option.  This causes the printing of various sorts of information
589 about find's internal state and progress.
591 The find option -nowarn cannot itself produce a warning (this used to
592 happen with commands like "find . -name quux -nowarn -print").
594 ** Performance Enhancements
596 Find now has a rudimentary cost-based optimiser.  It has an idea of
597 the basic cost of each test (i.e. that -name is very cheap while -size
598 is more expensive).  It re-orders tests bearing in mind the cost of
599 each test and its likely success.  Predicates with side effects (for
600 example -delete or -exec) are not reordered.  The optimiser is not
601 yet enabled by default, but the new option -O controls the query 
602 optimisation level.  To see this in action, try
603   find -D opt -O3 . -type f -o -type c -o -size 555 -name Z
604 and compare the optimised query with:
605   find -D opt -O3 . -size 555 -o -type c -o -type f -name Z
607   find -D opt     . -size 555 -o -type c -o -type f -name Z
609 Over time, as optimisations are proven to be robust and correct, they
610 will be moved to lower optimisation levels.  Some optimisations have
611 always been performed by find (for example -name is always done early
612 if possible).
614 ** Translations
616 Findutils 4.3.1 includes updated translations for the following
617 languages:
618  Vietnamese, Belarusian, Catalan, Danish, German, Greek, Esperanto,
619  Spanish, Estonian, Finnish, French, Irish, Galician, Croatian, Hungarian,
620  Indonesian, Italian, Japanese, Korean, Luganda, Malay, Dutch, Polish,
621  Portuguese, Brazilian Portuguese, Romanian, Russian, Kinyarwanda,
622  Slovak, Slovenian, Serbian, Swedish, Turkish, Chinese (simplified),
623  Chinese (traditional), Bulgarian
625 * Major changes in release 4.3.0, 2005-12-12
627 The 4.3.x release series are currently 'development' releases.  Please
628 test it, but think carefully before installing it in a production
629 system.  New features in findutils-4.3.x are under development; they
630 may change or go away. 
632 All changes up to and including findutils-4.2.27 are included in this
633 release.  In addition the following changes are new in this release:
635 ** Functional Changes
637 By default, find now uses the fts() function to search the file
638 system.  The use of fts greatly increases find's ability to search
639 extremely deep directory hierarchites.
641 You can tell that the version of find you are using uses FTS, because
642 the output of "find --version" will include the word "FTS".
644 Currently two binaries for 'find' are built.  The configure option
645 --without-fts can be used to select whether 'find' uses fts:
647                                   With fts      Without fts
648 default configuration             find          oldfind
649 configure --with-fts              find          oldfind
650 configure --without-fts           ftsfind       find
652 New tests, -readable, -writable, -executable.  These check that a file
653 can be read, written or executed respectively.
655 * Major changes in release 4.2.27, 2005-12-06
657 ** Warnings of Future Changes
659 The test -perm /000 currently matches no files, but for greater
660 consistency with -perm -000, this will be changed to match all files;
661 this change will probably be made in early 2006.  Meanwhile, a warning
662 message is given if you do this.
664 ** Bug Fixes
666 If xargs is invoked with many short arguments on PPC systems running
667 the Linux kernel, we no longer get an "argument list too long" error
668 from the operating system.
670 Fixed a bug in the test suite which caused it to spuriously fail on
671 systems where ARG_MAX is different to the value used by the Linux
672 kernel on 32-bit x86-architecture systems.
674 On systems running the Linux kernel, "find -printf %F" no longer
675 produces the wrong answer for files on filesystems that have been
676 remounted elsewhere using "mount --bind". (Savannah bug #14921).
678 ** Documentation Changes
680 Following some extensive and detailed review comments from Aaron
681 Hawley, the material in the manual pages and the Texinfo manual are
682 now synchronised.
684 The %M format specifier of "find -printf" is now documented, although
685 it has existed since release 4.2.5.
687 The 'find' manual page now correctly documents the fact that -regex
688 defaults to using Emacs-style regular expressions (though this can be
689 changed).
691 * Major changes in release 4.2.26, 2005-11-19
693 ** Public Service Announcements
695 I'd like to point out a second time that the interpretation of '-perm
696 +mode' has changed to be more POSIX-compliant.  If you want the old
697 behaviour of the GNU extension you should use '-perm /mode'.  See the
698 NEWS entry for findutils version 4.2.21 for details.
700 ** Functional Changes
702 The xargs command now supports a new option (--delimiter) which allows
703 input items to be separated by characters other than null and
704 whitespace.  This resolves Savannah support request sr #102914.
706 Sometimes find needs to read the /etc/mtab file (or perform the
707 equivalent operation on systems not using /etc/mtab).  If this
708 information is needed but not available, find now exits with an error
709 message non-zero status.  If the information is not needed, find will
710 not spuriously fail.
712 A new xargs option --delimiter allows the input delimiter to be
713 changed (previously \0 was the only choice unless you use the -L
714 option, which changes other semantics too).
716 ** Bug Fixes
718 If the environment size is too large to allow xargs to operate
719 normally, 'xargs --help' still works (now).
721 If the input to xargs is a large number of very short options (for
722 example, one character each), earlier versions of xargs would fail
723 with 'Argument list too long'.  However, since this is precisely the
724 problem that xargs was invented to solve, this is a bug.  Hence on
725 those systems we now correctly use a shorter command line.  This
726 problem particularly affected 64-bit Linux systems because of the
727 larger size of pointers, although 32-bit Linux systems were also
728 affected (albeit for longer command lines).  In theory the same
729 problem could affect 'find -exec {} +', but that's much less likely
730 (even so, the bug is fixed there too).
732 Bugfix for an unusual failure mode (Savannah bug #14842) where an
733 attempt to allocate more space for directory contents succeeds but is
734 incorrectly diagnosed as a failure.  The likelihood of you
735 experiencing this depends on your architecture, operating system and
736 resource limits.  This failure has been observed in a directory
737 containing 35396 entries.
739 ** Documentation Changes
741 The EXAMPLES section of the find manual page now correctly describes
742 the symbolic and octal modes for the -perm test.
744 The documentation and "--help" usage information for the -L, -l, -I
745 and -i options have been clarified (but the behaviour has not changed).
747 The documentation now explains more clearly what happens when you use
748 "-L -type l".
750 * Major changes in release 4.2.25, 2005-09-03
752 ** Bug Fixes
754 find -perm /440 (which should succeed if a file is readable by its
755 owner or group) now works.  Previously there was a bug which caused
756 this to be treated as "find -perm 440".
758 Some files in the xargs test suite have been renamed to avoid problems
759 on operating systems whoch cannot distinguish filenames on the basis
760 of upper/lower case distinctions.
762 The software now builds on Cygwin, including the generated file
763 regexprops.texi.
765 Findutils should now build once again on systems supporting AFS, but
766 this support has not recently been fully tested.  Findutils should
767 also (once again) build on Cygwin.
769 ** Other Changes
771 The test suite for find is now much more extensive.
773 * Major changes in release 4.2.24, 2005-07-29
775 ** Documentation Changes
777 The manual now includes a "Worked Examples" section which talks about
778 the various ways in which findutils can be used to perform common
779 tasks, and why some of these alternatives are better than others.
781 The -I option of xargs (which is required by the POSIX standard) is
782 now documented.
784 We now document the fact that find ensures that commands run by -ok
785 and -okdir don't steal find's input.  Find does this by redirecting
786 the command's standard input from stdin.
788 Many documentation readability enhancements and proofreading fixes
789 were contributed by Aaron Hawley.
791 ** Functional Changes
793 *** Functional changes in locate
795 The "--regex" option of locate now assumes the regular expression to
796 be in the same syntax as is used in GNU Emacs, though this can be
797 changed with the new option --regextype.  This is a change from the
798 existing behaviour (which was to use POSIX Basic Regular Expressions).
799 Since this feature is releatively new anyway, I though it was more
800 useful to have compatibility between regular expression handling in
801 find and locate than to maintain the short-lived previous behaviour of
802 locate.
804 The locate program now also supports a "--regextype" long option which
805 controls which regular expression syntax is understood by locate.
806 This is a long option and has no single-letter 'short option'
807 equivalent.
809 *** Functional changes in find
811 The regular expression syntax understood by "find" can be changed with
812 the -regextype option; this option is positional, meaning that you can
813 have several tests, each using a distinct syntax (this is not
814 recommended practice however).
816 The default regular expression syntax is substantially the same as
817 that recognised by GNU Emacs, except for the fact that "." will match
818 a newline.
820 The leaf optimisation can be disabled with the configure option
821 "--disable-leaf-optimisation", which is equivalent to specifying
822 "-noleaf" on all find command lines.  This is useful for systems
823 having filesystems which do not provide traditional Unix behaviour for
824 the link count on directories (for example Cygwin and the Solaris 9
825 HSFS implementation).
827 ** Bug Fixes
829 *** Bug Fixes for find
831 The -iregex test now works once again on systems that lack
832 re_search() (that is, systems on which findutils needs to use the
833 gnulib version of this function).
835 find -regex now once again uses GNU Emacs-compatible regular
836 expressions.
838 If invoked with stderr closed, the -fprint and -fprintf actions now no
839 longer cause error messages to be sent into the output file.
841 If the link count of a directory is less that two, the leaf
842 optimisation is now disabled for that directory.  This should allow
843 searching of non-Unix filesystems to be more reliable on systems that
844 don't take the trouble to make their filesystems look like traditional
845 Unix filesystems.   Some filesystems don't even take the trouble to
846 have a link count of less than two and for these, -noleaf is still
847 required unless --disable-leaf-optimisation was used at configure time.
849 The "%Y" directive for the -printf action now no longer changes find's
850 idea of the mode of the file, so this means among other things that
851 "-printf %Y %y" now works properly.  This is Savannah bug #13973.
853 * Major changes in release 4.2.23, 2005-06-19
855 ** Documentation Changes
857 The -L and -I options of xargs are currently incompatible (but should
858 not be).
860 Improved the documentation for -execdir and -okdir.
862 ** Functional Changes to updatedb
864 File names ending in "/" which are specified as an argument to
865 --prunepaths (or in $PRUNEPATHS) don't work, so we now issue an error
866 message if the user tries to do that.  The obvious exception of course
867 is "/" which does work and is not rejected.
870 * Major changes in release 4.2.22, 2005-06-12
872 ** Security Fixes
874 If a directory entry searched with "find -L" is a symbolic link to
875 ".", we no longer loop indefinitely.  This problem affected find
876 versions 4.2.19, 4.2.20 and 4.2.21.  This problem allows users to make
877 "find" loop indefinitely.  This is in effect a denial of service and
878 could be used to prevent updates to the locate database or to defeat
879 file security checks based on find.   However, it should be noted that
880 you should not use "find -L" in security-sensitive scenarios.
882 ** Other Bug Fixes
884 None in this release.
886 ** Functional Changes to locate
888 A locate database can now be supplied on stdin, using '-' as a element
889 of the database-path. If more than one database-path element is '-',
890 later instances are ignored.
892 A new option to locate, '--all' ('-A') causes matches to be limited to
893 entries which match all given patterns, not entries which match
894 one or more patterns.
896 ** Documentation Changes
898 Some typos in the manual pages have been fixed.  Various parts of the
899 manual now point out that it is good practice to quote the argument of
900 "-name".  The manpage now has a "NON-BUGS" section which explains some
901 symptoms that look like bugs but aren't.  The explanations of the "%k"
902 and "%b" directives to "find -printf" have been imrpoved.
905 * Major changes in release 4.2.21, 2005-06-07
906 ** Functional Changes to find
908 The GNU extension "find ... -perm +MODE" has been withdrawn because it
909 is incompatible with POSIX in obscure cases like "find ... -perm ++r".
910 Use the new syntax "find ... -perm /MODE" instead.  Old usages will
911 still continue to work, so long as they don't conflict with POSIX.
913 If the output is going to a terminal, the -print, -fprint, -printf and
914 -fprintf actions now quote "unusual" characters to prevent unwanted
915 effects on the terminal.  See "Unusual Characters in File Names" for
916 further details.  There is no change to the behaviour when the output
917 is not going to a terminal.   The locate program does the same thing,
918 unless the -0 option is in effect (in which case the filenames are 
919 printed as-is).
921 ** Functional Changes to locate
923 The locate command will now read each locate database at most once.
924 This means that if you are using multiple databases and are searching
925 for more than one name, the results will now be printed in a different
926 order (and if you specified a small limit with --limit, you may get a
927 different set of results).
929 A new option '--print' for locate causes it to print the matching
930 results even if the '--count' or '--statistics' option is in effect.
932 ** Bug Fixes
933 find /blah/blah/blah -depth -empty now works once again.
935 The -regex and -iregex tests of find now correctly accept POSIX Basic
936 Regular Expressions.  (Savannah bug #12999)
938 The updatedb program now works on systems where "su" does not support
939 the "-s" option, for example Solaris.
941 * Major changes in release 4.2.20, 2005-03-17
942 ** Internationalization and Localization
943 Updated Vietnamese and Dutch translations.   
945 ** Bug Fixes
946 Minor bugfix affecting only those who compile from the CVS repository, 
947 as opposed to those who compile from the source releases.
949 * Major changes in release 4.2.19, 2005-03-07
950 ** Bug Fixes
952 find should now no longer hang on systems which lack the O_NOFOLLOW
953 flag to open(2) and which are clients of an unresponsive NFS server
954 (Savannah bug #12044).
956 We now avoid inappropriately failing for "find -L foo" or "find -H
957 foo" if foo is a symbolic link (Savannah bug #12181).  Previously we
958 used to fail with the error message "Too many levels of symbolic
959 links".
961 "find . -false -exec foo {} +" no longer runs an extra instance of foo
962 when find exits (Savannah bug #12230).
964 If the chdir() safety check fails but we can no longer get back to 
965 where we started, exit with an explanatory (fatal) error message.
966 This does not happen on GNU/Linux and FreeBSD because the safety check
967 is not needed (the security problem the safety check protects against
968 is prevented in a cleaner way on those systems).
970 "make distclean" no longer deletes regex.c (which "make all" needs).
972 **  Functionality Changes
973 "find -printf "%h\n" will now print "." for files in the current directory.
974 Previously it printed nothing (but there was a bug in the %h
975 implementation anyway).  This fixes Savannah bug #12085.
977 Should now build (again) on non-C99-compliant systems.
979 ** Documentation enhancements
980 Fixed some typos and clarified wording in "Working with automounters".
982 ** Internationalization and Localization
983 New Vietnamese message translation.
985 * Major changes in release 4.2.18, 2005-02-16
986 ** Bug Fixes
987 *** "find -depth" was missing out non-leaf directories when they contain 
988     non-directories.  This affected findutils releases 4.2.15,
989     4.2.16 and 4.2.17, but the bug is now fixed.
990 *** Find no longer hangs on systems which are clients of unresponsive 
991     NFS servers.
992 **  Documentation improvements
993 *** Improvements and corrections to the find.1 manpage, including corrections to the descriptions of -H and -L.
995 * Major changes in release 4.2.17, 2005-02-08
996 ** Bug Fixes
997 *** bug #11861  undefined symbol "basename" on IRIX 5.3 
998 *** bug #11865  xargs -i regression  (as compared to findutils-4.2.12)
999 *** bug #11866  Typo in pred_okdir renders it useless (affecting 4.2.16 only)
1000 *** patch #3723 fix recent process_top_path change (for -execdir on /)
1001 *** Fixing bug #11866 and applying patch #3723 made -execdir work much better.
1002 *** find bar/baz/ugh now works again if baz is a symbolic link (broken 
1003     in 4.2.15).
1005 * Major changes in release 4.2.16, 2005-02-05
1006 **  Functionality Changes
1007 *** Updated the message catalogues for the translated messages.
1008 *** The subfs filesystem is now treated the same as the autofs
1009     filesystem is.
1010 *** New translations:  Belarusian, Catalan, Greek, Esperanto,
1011     Finnish, Irish, Croatian, Hungarian, Japanese, Luganda,
1012     Malay, Romanian, Slovenian, Serbian, Chinese (simplified).
1014 **  Bug Fixes
1015 *** The -execdir action now works correctly for files named on the 
1016     command line.
1018 * Major changes in release 4.2.15, 2005-01-29
1019 **  Functionality Changes
1020 *** locate now supports matching regular expression (--regex).
1021 *** --enable-d_type-optimization (introduced in findutils 4.2.13) is now turned on by default.
1023 * Major changes in release 4.2.14, 2005-01-25
1024 **  Functionality Changes
1025 *** New options -L, -P, -H for locate.  The work in the same was as the same options for find.
1026 **  Bug Fixes
1027 *** Don't include the "findutils/find/testsuite/find.gnu" subdirectory in the 
1028     distributed tar file more than once.
1029 *** Should now build on Solaris once again.
1030 *** -xtype and -printf %Y now work correctly for symbolic links once again
1031 **  Documentation improvements
1032 *** All options for "locate" are now documented
1034 * Major changes in release 4.2.13, 2005-01-23
1035 **  Performance Enhancements
1036 *** On Linux and some other systems, a large performance improvement, 
1037     because we can eliminate many of the calls to lstat() (in extreme
1038     cases, 99% of them).  Limited testing shows a 2x speedup on NFS
1039     filesystems.  Other systems which can make use of this enhancement
1040     include Mac OS X and *BSD.
1042 * Major changes in release 4.2.12, 2005-01-22
1043 **  Functionality Changes
1044 *** find is now POSIX-compliant, as far as I know.
1045 *** -exec ... {} + now works.
1046 *** New actions -execdir and -okdir which are like -exec and -ok but more secure.
1047 *** "locate -w" is now a synonym for "locate --wholepath".
1048 *** An empty path entry in the locate database path (for example "::" in 
1049     $LOCATE_PATH or in the argument to "locate -d") is taken to mean
1050     the default database, whose name is hard-coded in locate.
1051 **  Bug Fixes
1052 *** If find or xargs cannot write to stdout, for example because 
1053     output is redirected to a file and the disk is full, the 
1054     relevant program will return a non-zero exit status.
1056 * Major changes in release 4.2.11, 2004-12-12
1057 **  Bug Fixes
1058 *** Compilation fix for systems without EOVERFLOW.
1059 *** More helpful error message if you make a mistake with (, ), -o or -a.
1060 **  Functionality Changes
1061 *** If you have unclosed parentheses on the find command line, 
1062     or any of a number of similar problems, find will now produce 
1063     a more helpful error message.
1064 *** locate -b is now a synonym for locate --basename
1065 *** locate now supports a --statistics (or -S) option, which prints some
1066     statistics about the locate databases.
1067 *** Implemented the -samefile option.
1068 **  Documentation improvements
1069 *** New chapter in the manual, "Security Considerations". 
1070 *** Better documentation for -prune (Mainly thanks to   Stepan Kasal)
1071 **  Bug Fixes
1072 *** locate's options -i and -w now work with the -e option (previously a bug 
1073     prevented this).
1075 * Major changes in release 4.2.10, 2004-12-06
1076 **  Bug Fixes
1077 *** Portability fix for fstype.c: should now compile on UNICOS, and possibly 
1078     also produce useful results on BeOS and Dolphin, perhaps other
1079     systems too.   
1081 * Major changes in release 4.2.9, 2004-12-05
1082 **  Functionality Changes
1083 *** xargs no longer treats a line containing only an underscore as a logical end-of-file.   To obtain the behaviour that was previously the default, use "-E_". 
1084 *** xargs now supports the POSIX options -E, -I and -L.   These are synonyms 
1085     for the existing options -e, -i and -l, but the latter three are
1086     now deprecated.
1087 **  Bug Fixes
1088 *** xargs -n NUM now invokes a command as soon as it has NUM arguments.  
1089     Previously, it waited until NUM+1 items had been read, and then
1090     invoked the command with NUM arguments, saving the remaining one
1091     for next time. 
1092 *** If "find -L" discovers a symbolic link loop, an error message is issued.
1093 *** If you specify a directory on the find command line, but -prune 
1094     is applied to it, find will no longer chdir() into it anyway.
1095 **  Documentation improvements
1096 *** The precise interpretation of the arguments to the -atime, -ctime 
1097     and similar tests in find has been documented more clearly.
1099 * Major changes in release 4.2.8, 2004-11-24
1100 *** Bugfix to the findutils 4.2.7 automount handling on Solaris.  This 
1101     worked to some extent in findutils-4.2.7, but is much improved in
1102     findutils-4.2.8.
1104 * Major changes in release 4.2.7, 2004-11-21
1105 **  Functionality Changes
1106 *** xargs can now read a list of arguments from a named file, allowing 
1107     the invoked program to use the same stdin as xargs started with
1108     (for example ``xargs --arg-file=todo emacs'').
1109 **  Documentation improvements
1110 *** The Texinfo manual now has an extra chapter, "Error Messages".  Most 
1111     error messages are self-explanatory, but some of the ones which
1112     are not are explained in this chapter.
1113 **  Bug Fixes
1114 *** Avoid trying to link against -lsun on UNICOS, which doesn't need it or 
1115     have it.
1116 *** Bugfix to the findutils 4.2.6 automount handling (which hadn't been enabled
1117     on Solaris).
1118 *** Reenabled internationalisation support (which had been accidentally 
1119     disabled in findutils-4.2.5).
1121 * Major changes in release 4.2.6, 2004-11-21
1122 **  Bug Fixes
1123 *** find now copes rather better when a directory appears to change just as
1124     it is about to start examining it, which happens with automount.
1125     This is because automount mounts filesystems as you change
1126     directory into them.  This should resolve Savannah bugs #3998,
1127     #9043.
1129 * Major changes in release 4.2.5, 2004-11-11
1130 **  Functionality Changes
1131 *** The POSIX options -H and -L are supported.  These control whether or not
1132     find will follow symbolic links.
1133 *** The BSD option -P is also now supported (though in any case 
1134     it is the default).
1135 **  Documentation improvements
1136 ***  Better documentation for "xargs -i".
1137 **  Bug Fixes
1138 *** "make install" now respects DESTDIR when generating localstatedir.
1139     (this is only relevant if you are installing to some location
1140     other than the one that you indictaed when you ran "configure").
1141 *** Compatible with automake versions 1.8 and 1.9.
1142 *** Build problems on UNICOS now fixed, though the linker will still generate 
1143     warnings because we try to link with the nonexistent library
1144     "-lsun".  Edit $(LIBS) to work around this problem.
1146 * Major changes in release 4.2.4, 2004-11-08
1147 **  Functionality Changes
1148 *** If your system sort command has a working "-z" option, updatedb will
1149     now correctly handle newline characters in filenames (as will
1150     locate).
1151 *** xargs now uses 128Kb of command line by default (less if the system 
1152     doesn't support that much).
1153 *** If you specify a 'find' option after non-option, a warning message 
1154     is now issued.  Options should be specified immediately after the 
1155     list of paths to search.  These warnings are enabled if you
1156     specify the -warn option, or if stdin is a tty.  They are diabled
1157     by the use of the -nowarn option.  
1158 *** Like find, the locate program now supports an option --null (short form -0)
1159     which changes the result separator from newline to NULL.
1160 *** Locate supports the option -c (long form --count) which suppresses normal
1161     output but prints on stdout the number of results produced (like
1162     grep -c).
1163 *** Locate supports the option -l (long form --limit) which limits the 
1164     number of results.  This is useful if you only want to find out if
1165     there are copies of a certain file on the system, but don't want
1166     to wait for the entire locate database to be searched.
1167 *** Locate now has an option --basename which forces the specified pattern to 
1168     be matched against the basename of the entries in the locate
1169     database, rather than the whole name.  The default behaviour
1170     (matching against the whole name of the file including all the
1171     parent directory names) corresponds to the option --wholename.
1172 *** updatedb has a new option, --findoptions, that can be used to 
1173     pass extra options through to the find command that it uses.
1174 **  Bug Fixes
1175 *** "find -printf '%H\n'" now works (rather than segfaulting) on
1176     systems that have non-writable string constants.
1177 *** Better POSIX compliance for the -s option to xargs (out of range 
1178     values should just result in bounding to the correct range, not an
1179     error, so now we just print a warning message and adjust the
1180     value).
1181 *** Corrected section numbers of manual page cross-references
1183 * Major changes in release 4.2.3, 2004-10-30
1184 **  Functionality Changes
1185 *** Added new action -delete which deletes things that find matches.
1186 *** Added new action -quit which causes find to exit immediately.
1187 *** A new format directive '%D' for "find -printf" prints the device number.
1188 *** The -ls predicate no longer truncates user or group names.
1189 *** Added new option "-d" which is a synonym for "-depth" for compatibility
1190     with Mac OS, OpenBSD and FreeBSD.  This option is already
1191     deprecated since the POSIX standard specifies "-depth".   
1192 *** Added two new format specifiers to the -printf action; these are 
1193     %y and %Y.  They indicate the type of the file as a single letter;
1194     these are the same latters as are used by the "-type" test.
1195 *** If a parent directory changes during the execution of find, 
1196     the error message we issue identifies the nature of the change
1197     (for example the previous and current inode numbers of the 
1198     directory we've just returned out of).
1199 ** Other Changes
1200 *** Non-functional code changes to silence compiler warnings.
1202 * Major changes in release 4.2.2, 2004-10-24
1203 **  Documentation improvements
1204 *** "find ... -exec {}+" is not yet supported.
1205 ** Bug Fixes
1206 *** Fixed compilation problems on Solaris, RedHat EL AS 2.1, Irix, AIX
1207 *** Work around possible compiler bug on HP-UX 11.23 for ia64
1208 *** The built-in internationalisation support now works again.
1209 ** Other Changes
1210 *** We now import the gnulib source in the way it is intended to be used,
1211     which means among other things that we only have one config.h file
1212     now.
1213 *** Functions which findutils requires but which are not present in 
1214     gnulib are now defined in "libfind.a".  This is in the lib
1215     directory, while gnulib is in the gnulib subdirectory.
1216 *** Fixed a typo in the address of the FSF in many of the file headers.
1218 * Major changes in release 4.2.1, 2004-10-17
1219 ** Bug Fixes
1220 *** 'find -name \*bar now matches .foobar, because the POSIX standard 
1221      requires it, as explained at
1222      http://standards.ieee.org/reading/ieee/interp/1003-2-92_int/pasc-1003.2-126.html
1224 * Major changes in release 4.2.1, 2004-10-17
1225 ** Bug Fixes
1226 *** find -iname now works correctly on systems that have an fnmatch() function 
1227     that does not support FNM_CASEFOLD
1228 *** updatedb now uses signal names for "trap" instead of numbers, 
1229     as per bug #9465 (see http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html)
1230 *** Better support for systems lacking intmax_t
1231 ** Other Changes
1232 **** findutils now uses a newer version of gnulib (dated 2004-10-17).
1234 * Major changes in release 4.2.0, 2003-06-14
1235 ** Functionality Changes
1236 *** xargs now works better when the environment variables are very extensive.
1237     The xargs command used to run into difficulties if the environment 
1238     data contained more than 20480 bytes.
1239 *** New options -wholename and -iwholename 
1240     As per the GNU Projecvt coding standard, These are preferred over 
1241     the -path and -ipath options.  Using -ipath now generates a warning,
1242     though -path does not (since HPUX also offers -path).   
1243 *** The environment variable FIND_BLOCK_SIZE is now ignored.
1244 *** New option "-ignore_readdir_race"
1245     silences an error messages which would otherwise occur if a file is removed
1246     after find has read it from the directory using readdir(), but before 
1247     find stats the file.  There is also an option
1248     -noignore_readdir_race which has the opposite effect.   
1249 **  Documentation improvements
1250 *** The -size option of find is now documented in more detail
1251 *** POSIX compliance and GNU extensions
1252     The find manual page also now includes a section 
1253     which describes the relationship between the features of GNU 
1254     find and the POSIX standard.  Some other small improvements 
1255     to the find and xargs manual pages have been made.
1256 *** The argument to the -fprintf directive is now better documented.
1257     The escape code '\0' for the `-printf' predicate of find is now
1258     documented, and the documentation for the %k and %b specifiers
1259     has been improved.  
1260 *** xargs -i is now more clearly documented.
1261 ** Bug Fixes
1262 *** locate 'pa*d' will now find /etc/passwd (if it exists, of course)
1263 *** xargs standard input is not inherited by child processes
1264     If the command invoked by xargs reads from its standard input, 
1265     it now gets nothing, as opposed to stealing data from the 
1266     list of files that xargs is trying to read.
1267 *** Better support for 64-bit systems.
1268 *** The command "xargs -i -n1" now works as one might expect, 
1269     I think this is a strange thing to want to do.  
1270 *** Arguments to find -mtime that are too large are now diagnosed 
1271     Previously, this just used to cause find just to do the wrong thing.
1272 *** updatedb is now somewhat more robust
1273     The updatedb shell script now does not generate an empty 
1274     database if it fails.  
1275 *** Sanity-check on some data read from locatedb
1276     Locate now detects some types of file corruption in the 
1277     locate database.
1278 *** The %k format specifier for -fprintf now works
1279     This was broken in 4.1.20.
1281 * Major changes in release 4.1.20, 2003-06-14:
1282 ** New maintainer, James Youngman <jay@gnu.org>
1283 ** As far as I know, this is the first release after 4.1.7, but I've left 
1284    a gap just in case. 
1285 ** We now use an "imported" version of gnulib, rather than including 
1286    a copy of the gnulib code in our CVS repository.   There are no
1287    differences in the build instructions, though (unless you are 
1288    building directly from CVS, in which case please read the file
1289    README-CVS).
1290 ** There are no (deliberate) functional changes in version 4.1.20.
1292 * Major changes in release 4.1.7, 2001-05-20:
1293 fix problem so that default "-print" is added when "-prune" is used.
1294 security fixes related to directories changing while find is executing.
1296 * Major changes in release 4.1.6, 2000-10-10:
1297 correct bug in prune.
1298 added --ignore-case option for locate
1300 * Major changes in release 4.1.5, 2000-04-12:
1301 Add support for large files
1303 * Major changes in release 4.1.4, 2000-02-26:
1304 bug fixes, more up-to-date languages.
1306 * Major changes in release 4.1.3, 2000-01-27:
1307 added internationalization and localization.
1309 * Major changes in release 4.1.2, 2000-01-18:
1310 None.
1312 * Major changes in release 4.1.1, 1999-08-8:
1313 attempt at successful compilation on many platforms after years of neglect
1314  "--existing" option added to locate "--prunefs" option added to updatedb
1316 * Major changes in release 4.1, 1994-11-3:
1318 ** Distribution renamed to findutils.
1319 ** updatedb is now a user command, installed in $exec_prefix/bin
1320   instead of $exec_prefix/libexec.
1321 ** A few problems in Makefiles and testsuite corrected.
1323 * Major changes in release 4.0, 1994-11-2:
1325 ** Documentation:
1326 *** Texinfo manual.
1327 *** Man page for updatedb.
1328 *** Man page for the locate database formats.
1330 ** find:
1331 *** Takes less CPU time on long paths, because it uses chdir to descend
1332    trees, so it does fewer inode lookups.
1333 *** Does not get trapped in symbolic link loops when -follow is given.
1334 *** Supports "-fstype afs" if you have /afs and /usr/afsws/include
1335    and you configure using the --with-afs option.
1336 *** New action -fls FILE; like -ls but writes to FILE.
1338 ** locate:
1339 *** Supports a new database format, which is 8-bit clean and
1340    allows machines with different byte orderings and integer sizes to
1341    share the databases.  The new locate can also detect and read the
1342    old database format automatically.  The new databases are typically
1343    30% or more larger than the old ones (due to allowing all 8 bits in
1344    file names).  Search times are approximately the same, or faster on
1345    some systems.
1346 *** Warns if a file name database is more than 8 days old.
1348 ** updatedb:
1349 *** Takes command-line options.
1351 ** xargs:
1352 *** Performance improved 10-20%.
1353 *** The EOF string is not used when -0 is given.
1354 *** Now has a test suite.  Some minor bugs fixed as a result.
1356 * Major changes in release 3.8, 1993-03-29:
1358 ** case insensitive versions of -lname, -name, -path, -regex:
1359   -ilname, -iname, -ipath, -iregex
1360 ** %F directive for -printf, -fprintf to print file system type
1362 * Major changes in release 3.7:
1364 ** locate can search multiple databases
1365 ** locate has an option to specify the database path
1366 ** updatedb no longer goes into an infinite loop with some versions of tail
1368 * No NEWS was kept for earlier releases.  Known release dates include:
1369 ** release 3.2, 1991-08-28
1370 ** release 3.1, 1991-08-21
1371 ** release 3.0, 1991-08-21
1372 ** release 2.2, 1991-04-05
1373 ** release 2.1, 1991-01-01
1374 ** release 2.0, 1990-11-20
1375 ** release 1.2, 1990-07-03
1376 ** release 1.1, 1990-06-24
1377 ** release 1.0, 1990-06-22
1378 ** beginning of findutils history, 1987-02-21
1380                         --//--
1381 This is used by Emacs' spell checker ispell.el:
1383 LocalWords: ansi knr strftime xargs updatedb sh fnmatch hin strcpy
1384 LocalWords: lib getstr getline frcode bigram texi depcomp automake
1385 LocalWords: strncasecmp strcasecmp LIBOBJS FUNC prunefs allout libexec
1386 LocalWords: testsuite Texinfo chdir inode fstype afs fls ls EOF lname
1387 LocalWords: regex ilname iname ipath iregex printf fprintf