aboutsummaryrefslogtreecommitdiff
path: root/findutils
AgeCommit message (Collapse)Author
2007-02-06find: fix -not supportDenis Vlasenko
2007-02-06EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>Denis Vlasenko
2007-02-04- improve wordingBernhard Reutner-Fischer
2007-02-04- remove duplicate menu entryBernhard Reutner-Fischer
2007-02-04find: support for !Denis Vlasenko
2007-02-04- strip 12 bytes off by using a smaller type for need_print.Bernhard Reutner-Fischer
- add TODO to switch this applet to index_in_str_array()
2007-02-03suppress warnings about easch <applet>_main() havingDenis Vlasenko
no preceding prototype
2007-02-03assorted fixes for bugs found with randomconfigDenis Vlasenko
2007-02-02find -user support by Natanael Copa <natanael.copa@gmail.com>Denis Vlasenko
2007-01-29preparatory patch for -Wwrite-strings #4Denis Vlasenko
2007-01-29preparatory patch for -Wwrite-strings #2Denis Vlasenko
2007-01-27fix warning in find.cDenis Vlasenko
2007-01-26find: fix -mtime, -mmin, -perm (+ add symbolic perm handling)Denis Vlasenko
chmod: better name for a variable
2007-01-22fix warning from needlessly-global functionsDenis Vlasenko
2007-01-03find: fix misplaced #else (fix by Harald Kuthe <trhoudini@hotmail.com>)Denis Vlasenko
2006-12-26merge post-1.3.0 fixesDenis Vlasenko
2006-12-23sum: 40% size reduction (-300 bytes)Denis Vlasenko
find: one_char -> LONE_CHAR
2006-12-23find: fix spurious -exec error messagesDenis Vlasenko
(bug reported by Bernhard Fischer <rep.nop@aon.at>)
2006-12-22remove useless casts (type*) xzalloc(...)Denis Vlasenko
2006-12-12build system: add "release" targetDenis Vlasenko
find: support -size N (needed for above)
2006-11-01mostly style fixesDenis Vlasenko
2006-10-31find: -type T was actually meaning ! -type T!Denis Vlasenko
With this fix, "make mrproper" works correctly
2006-10-31find: implement -prune. "make clean" now works! :)Denis Vlasenko
2006-10-31find: fix implicit -print (sometime differed from standard)Denis Vlasenko
2006-10-30find: implement ( )Denis Vlasenko
2006-10-29find: a lot more compliant to 'standard' findDenis Vlasenko
(we were not respecting order of actions!). Add -o and -a handling.
2006-10-29find: small improvementDenis Vlasenko
2006-10-29find: fix -exec to work like stock find does.Denis Vlasenko
2006-10-27recursive_action: add depth paramDenis Vlasenko
chmod: match coreutils versus following links
2006-10-26rename functions to more understandable namesDenis Vlasenko
2006-10-22grep: "grep -h pattern file1 file2" ignored -hDenis Vlasenko
(precluded kernel's "make modules")
2006-10-20message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko
2006-10-15grep: -r didn't close files, producing "Too many open files"Denis Vlasenko
2006-10-14grep: fix combination of -r and -hDenis Vlasenko
2006-10-14grep: add support for -rDenis Vlasenko
2006-10-12bb_get_[chomped]line_from_file wasn't descriptive enough.Denis Vlasenko
Renaming...
2006-10-08attempt to regularize atoi mess.Denis Vlasenko
2006-10-05build system overhaulDenis Vlasenko
2006-10-03bb_applet_name -> applet_nameDenis Vlasenko
2006-10-03getopt_ulflags -> getopt32.Denis Vlasenko
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit.
2006-10-03lots of silly indent fixesDenis Vlasenko
2006-09-29grep: add help text; fix styleDenis Vlasenko
2006-09-29grep: implement -o option. Patch by Jac Goudsmit.Denis Vlasenko
2006-09-29xargs: simplify option parsingDenis Vlasenko
2006-09-25fix 'grep -C' which requires an argumentEric Andersen
2006-09-22Change license statements (and clean up headers) on some of the files thatRob Landley
Erik or I are primary copyright holders on.
2006-09-13- fix copy'n paste errors that got introduced when switching to the shorter ↵Bernhard Reutner-Fischer
boilerplate. No object code changes.
2006-08-03Remove xcalloc() and convert its callers to xzalloc(). About half of themRob Landley
were using "1" as one of the arguments anyway, and as for the rest a multiply and a push isn't noticeably bigger than pushing two arguments on the stack.
2006-08-03Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley
things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
2006-07-03make the -0 xargs option a little more clearMike Frysinger