Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2001-05-16 | Change 'printf("%s\n", ...)' into 'puts(...)'. Noted and patched in hostname.c | Matt Kraai | |
by Larry Doolittle. | |||
2001-05-14 | Fixed a subtle bug in the handling of -l and -c flags. | Mark Whitley | |
2001-04-17 | The tiniest of bracket-placement fixes. | Mark Whitley | |
2001-04-09 | Make 'grep -l' work | Eric Andersen | |
2001-04-09 | Fixed option parsing. Grep would continue grepping, even when given a bad / | Mark Whitley | |
invalid option. Closes bug #1146. | |||
2001-02-14 | This patch, put together by Manuel Novoa III, is a merge of work | Eric Andersen | |
done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. | |||
2001-02-09 | Implemented -A, -B, and -C flags with BB_FEATURE_GREP_CONTEXT option set. | Mark Whitley | |
2001-02-01 | Tightened things up a bit, saved 20 bytes, and made the code a bit clearer in | Mark Whitley | |
the process. | |||
2001-02-01 | Fix wget error message and add (and use) chomp library function. | Matt Kraai | |
2001-01-27 | Fix up copyright msgs. Bump version to 0.49 in preparation for | Eric Andersen | |
a release. Update the website with release details. -Erik | |||
2001-01-27 | Fix header file usage -- there were many unnecessary header files included in | Eric Andersen | |
busybox.h which slowed compiles. I left only what was needed and then fixed up all the apps to include their own header files. I also fixed naming for pwd.h and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc. -Erik |