aboutsummaryrefslogtreecommitdiff
path: root/findutils/find.c
AgeCommit message (Collapse)Author
2007-06-16find: make -size match GNU findDenis Vlasenko
2007-06-15find: add conditional support for -maxdepth and -regexDenis Vlasenko
(needed for Linux 2.6.22-rc4 build) -maxdepth: # size busybox_old busybox_unstripped text data bss dec hex filename 675622 2792 15728 694142 a977e busybox_old 675770 2792 15728 694290 a9812 busybox_unstripped -regex: # size busybox_old busybox_unstripped text data bss dec hex filename 675770 2792 15728 694290 a9812 busybox_old 675894 2792 15728 694414 a988e busybox_unstripped
2007-05-26usage.c: remove reference to busybox.hDenis Vlasenko
*: s/include "busybox.h"/include "libbb.h"
2007-04-13find: add support for -delete, -path (by Natanael Copa)Denis Vlasenko
2007-04-10audit small applets and mark some of them as NOFORK.Denis Vlasenko
Put big scary warnings in relevant places.
2007-04-09factor out NOFORK/NOEXEC code from find. Use it for xargs too.Denis Vlasenko
2007-04-09Implement first instance of NOFORK applet - echoDenis Vlasenko
find: use NOFORK/NOEXEC; small -exec buglet also eliminated vfork_daemon_rexec: honor PREFER_APPLETS echo: small size improvements find -exec echo {} \; with PREFER_APPLETS=y runs 4 times faster
2007-04-08find: fix -prune more. Add big comment about it.Denis Vlasenko
2007-04-08find: fix handling of -pruneDenis Vlasenko
recursive_actions: uppercase flag constants
2007-04-05- size and prune were mixed upBernhard Reutner-Fischer
2007-04-05find: missed 'ststic' on const dataDenis Vlasenko
2007-04-04find: un-DESKTOPize (Kai Schwenzfeier <niteblade@gmx.net>)Denis Vlasenko
find: -group, -depth (Natanael Copa <natanael.copa@gmail.com>) find: make constant array static, declare PARM_xx constants with enum
2007-03-29- use index_in_str_array also for find_mainBernhard Reutner-Fischer
text data bss dec hex filename 2605 1 12 2618 a3a find.o.r18274 2602 1 12 2615 a37 find.o.r18275
2007-03-29- remove bloated switch statement.Bernhard Reutner-Fischer
text data bss dec hex filename 2706 1 12 2719 a9f find.o.r18273 2605 1 12 2618 a3a find.o.r18274
2007-03-29- implement a TODO: Use index_in_str_array in parse_paramsBernhard Reutner-Fischer
text data bss dec hex filename 2771 1 12 2784 ae0 find.o.r18272 2749 1 12 2762 aca find.o.-try-switch 2706 1 12 2719 a9f find.o.r18273
2007-03-29- Purely cosmetic type fiddlingBernhard Reutner-Fischer
2007-03-29- fold recurse, depthFirst and dereference params into one param flags.Bernhard Reutner-Fischer
Minor size improvement (-16b for size, -24b according to bloat-o-meter).
2007-02-06find: fix -not supportDenis Vlasenko
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-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-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-14grep: add support for -rDenis Vlasenko
2006-10-08attempt to regularize atoi mess.Denis Vlasenko
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-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-06-07- reuse strings and messages. Saves about 600BBernhard Reutner-Fischer
2006-06-02- move #include busybox.h to the very top so we pull in the configBernhard Reutner-Fischer
and eventual platform specific includes in early.
2006-05-12implement -print0 for findPaul Fox
2006-03-27prevent find from ever descending into an xdev'ed directory.Paul Fox
2006-03-13Patch from Denis Vlasenko to add xstat() and use it.Rob Landley