Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-29 | grep: add help text; fix style | Denis Vlasenko | |
2006-09-29 | grep: implement -o option. Patch by Jac Goudsmit. | Denis Vlasenko | |
2006-09-25 | fix 'grep -C' which requires an argument | Eric Andersen | |
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-03 | Remove xcalloc() and convert its callers to xzalloc(). About half of them | Rob 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-03 | Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate | Rob 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 600B | Bernhard Reutner-Fischer | |
2006-06-02 | - move #include busybox.h to the very top so we pull in the config | Bernhard Reutner-Fischer | |
and eventual platform specific includes in early. | |||
2006-05-26 | Change llist_add_* to take the address of the list rather than returning the new | Rob Landley | |
head, and change all the callers. | |||
2006-03-06 | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | |
definitions. (That should only be on prototypes.) | |||
2006-02-28 | make grep faster (close bug 758), reduce small memory leak in ↵ | "Vladimir N. Oleynik" | |
CONFIG_FEATURE_CLEANUP mode | |||
2005-10-14 | - new bb_opt_complementally syntax, use [-:?] only - 'free' chars | "Vladimir N. Oleynik" | |
- new bb_getopt_ulflags features: check max and min args, convert first argv to options special for ar and tar applets - use bb_default_error_retval for env applet | |||
2005-09-23 | - replace variables by defines to save space | Bernhard Reutner-Fischer | |
- rename string denoting stdin from "-" to "(standard input)" to match GNU grep. | |||
2005-09-23 | SUSv3 -q compatibily exit status correction for grep again | "Vladimir N. Oleynik" | |
2005-09-23 | SUSv3 -q compatibily exit status correction for grep | "Vladimir N. Oleynik" | |
2005-09-23 | grep must have exit code >1 if input file not found. Small indent correcion ↵ | "Vladimir N. Oleynik" | |
also. | |||
2005-09-14 | split libbb: moved xregcomp separatelly for speed up recompile | "Vladimir N. Oleynik" | |
2005-09-14 | removed strange extern void xregcomp(... from some applets, but declared ↵ | "Vladimir N. Oleynik" | |
from libbb.h | |||
2005-09-05 | 1) bb_opt_complementaly -> bb_opt_complementally | "Vladimir N. Oleynik" | |
2) better support long options 3) new flag '!' for bb_opt_complementally: produce bb_show_usage() if BB_GETOPT_ERROR internally | |||
2005-07-31 | patch by srowe in Bug 359 to fix fgrep aliasing | Mike Frysinger | |
2005-04-16 | In Bug 78, shortkey points out: | Mike Frysinger | |
If you run `grep -h . file1 file2 file3 ...`, the output is not prefixed with the filename. If you run `grep -h . file1` however, the filename will incorrectly prefix the output. | |||
2004-10-08 | Hiroshi Ito writes: | Eric Andersen | |
Hello I'm using busy box on mipsel machine. "grep -f file" will cause segmentation fault. Vladimir N. Oleynik writes: Hiroshi, Thank for bug report, but your patch is full broken. Worked patch attached. (really changes is zero initialize, and indent correcting). --w vodz | |||
2004-05-26 | Make the grep option values a bit less horrible | Eric Andersen | |
2004-05-26 | Rick Richardson writes: | Eric Andersen | |
Here is a patch that adds egrep -L support (the opposite of egrep -l). I realize this is probably too late for 1.0. But I offer it for your future consideration. egrep -L is used in some networking startup scripts I inherited. -Rick | |||
2004-05-26 | Patch from vodz to correct 'grep -e pattern1 -e pattern2' logic | Eric Andersen | |
2004-04-14 | Larry Doolittle writes: | Eric Andersen | |
This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry | |||
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |
2003-06-20 | last_patch89 from vodz: | Eric Andersen | |
Manuel, I rewrite bb_getopt_ulflags() function for more universal usage. My version support now: - options with arguments (optional arg as GNU extension also) - complementaly and/or incomplementaly and/or incongruously and/or list options - long_opt (all applets may have long option, add supporting is trivial) This realisation full compatibile from your version. Code size grow 480 bytes, but only coreutils/* over compensate this size after using new function. Last patch reduced over 800 bytes and not full applied to all. "mkdir" and "mv" applets have long_opt now for demonstrate trivial addition support long_opt with usage new bb_getopt_ulflags(). Complementaly and/or incomplementaly and/or incongruously and/or list options logic is not trivial, but new "cut" and "grep" applets using this logic for examples with full demostrating. New "grep" applet reduced over 300 bytes. Mark, Also. I removed bug from "grep" applet. $ echo a b | busybox grep -e a b a b a b But right is printing one only. --w vodz | |||
2003-04-27 | Fix segfault when cleaning up | Glenn L McGrath | |
2003-04-27 | grep -f support, adds only 60 Bytes, but regex's now compiled as | Glenn L McGrath | |
required, rather than being pre-compiled. | |||
2003-03-19 | Major coreutils update. | Manuel Novoa III | |
2002-11-28 | Change if(x)free(x); to free(x); | Aaron Lehmann | |
2002-02-22 | * findutils/grep.c (grep_main): Remove unnecessary use of junk. | Matt Kraai | |
2001-11-20 | Fix undeclared variable error. | Matt Kraai | |
2001-11-20 | Usr get_last_path_component() name basename() | Eric Andersen | |
2001-11-19 | oops | Eric Andersen | |
2001-11-19 | More scrubbing | Eric Andersen | |
2001-11-19 | Fixup CLEANUP behavior | Eric Andersen | |
2001-11-12 | Convert strdup call to xstrdup, and calloc calls to xcalloc (patch from | Matt Kraai | |
Steve Merrifield). | |||
2001-11-10 | Add in grep -E support | Eric Andersen | |
2001-10-31 | Make egrep only set REG_EXTENDED flag. | Matt Kraai | |
2001-10-31 | Patch from Charles Steinkuehler <charles@steinkuehler.net> | Eric Andersen | |
to properly handle extended regexps for egrep | |||
2001-10-29 | Use extended regular expressions when invoked as egrep (noted and initial | Matt Kraai | |
patch by Charles Steinkuehler). | |||
2001-10-24 | Major rework of the directory structure and the entire build system. | Eric Andersen | |
-Erik | |||
2001-10-18 | Scrub up some function prototypes. | Eric Andersen | |
-Erik | |||
2001-07-31 | Fix behavior of grep -lc to match GNU grep. SuS2 is ambiguous | Eric Andersen | |
on the correct behavior, so acting like GNU grep seems best -Erik | |||
2001-05-29 | grep failed to compile when BB_FEATURE_CLEAN_UP was defined -- types were wrong. | Eric Andersen | |
2001-05-24 | Added support for grep -e and grep -f, closes bug #1164. Also added some | Mark Whitley | |
testcases for these new features. | |||
2001-05-22 | Fixed extra -- lines (noted by Christophe Boyanique). | Matt Kraai | |
2001-05-21 | Fixed mishandling of -c & -l options and accounted for case when we're | Mark Whitley | |
grepping only one file. |