aboutsummaryrefslogtreecommitdiff
path: root/findutils/grep.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - reuse strings and messages. Saves about 600Baldot2006-06-071-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15325 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - move #include busybox.h to the very top so we pull in the configaldot2006-06-021-1/+1
| | | | | | | and eventual platform specific includes in early. git-svn-id: svn://busybox.net/trunk/busybox@15267 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Change llist_add_* to take the address of the list rather than returning the newlandley2006-05-261-2/+2
| | | | | | | head, and change all the callers. git-svn-id: svn://busybox.net/trunk/busybox@15199 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionlandley2006-03-061-1/+1
| | | | | | | definitions. (That should only be on prototypes.) git-svn-id: svn://busybox.net/trunk/busybox@14457 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make grep faster (close bug 758), reduce small memory leak in ↵vodz2006-02-281-16/+62
| | | | | | CONFIG_FEATURE_CLEANUP mode git-svn-id: svn://busybox.net/trunk/busybox@14361 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - new bb_opt_complementally syntax, use [-:?] only - 'free' charsvodz2005-10-141-2/+2
| | | | | | | - 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 git-svn-id: svn://busybox.net/trunk/busybox@11859 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - replace variables by defines to save spacealdot2005-09-231-71/+57
| | | | | | | | - rename string denoting stdin from "-" to "(standard input)" to match GNU grep. git-svn-id: svn://busybox.net/trunk/busybox@11594 69ca8d6d-28ef-0310-b511-8ec308f3f277
* SUSv3 -q compatibily exit status correction for grep againvodz2005-09-231-2/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11593 69ca8d6d-28ef-0310-b511-8ec308f3f277
* SUSv3 -q compatibily exit status correction for grepvodz2005-09-231-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11592 69ca8d6d-28ef-0310-b511-8ec308f3f277
* grep must have exit code >1 if input file not found. Small indent correcion ↵vodz2005-09-231-2/+6
| | | | | | also. git-svn-id: svn://busybox.net/trunk/busybox@11591 69ca8d6d-28ef-0310-b511-8ec308f3f277
* split libbb: moved xregcomp separatelly for speed up recompilevodz2005-09-141-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11464 69ca8d6d-28ef-0310-b511-8ec308f3f277
* removed strange extern void xregcomp(... from some applets, but declared ↵vodz2005-09-141-2/+0
| | | | | | from libbb.h git-svn-id: svn://busybox.net/trunk/busybox@11463 69ca8d6d-28ef-0310-b511-8ec308f3f277
* 1) bb_opt_complementaly -> bb_opt_complementallyvodz2005-09-051-2/+2
| | | | | | | 2) better support long options 3) new flag '!' for bb_opt_complementally: produce bb_show_usage() if BB_GETOPT_ERROR internally git-svn-id: svn://busybox.net/trunk/busybox@11332 69ca8d6d-28ef-0310-b511-8ec308f3f277
* patch by srowe in Bug 359 to fix fgrep aliasingvapier2005-07-311-0/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11001 69ca8d6d-28ef-0310-b511-8ec308f3f277
* In Bug 78, shortkey points out:vapier2005-04-161-2/+2
| | | | | | | | | 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. git-svn-id: svn://busybox.net/trunk/busybox@10115 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Hiroshi Ito writes:andersen2004-10-081-4/+4
| | | | | | | | | | | | | | | | | | | | | | | 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 git-svn-id: svn://busybox.net/trunk/busybox@9324 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make the grep option values a bit less horribleandersen2004-05-261-18/+18
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8875 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Rick Richardson writes:andersen2004-05-261-8/+16
| | | | | | | | | | | | | | 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 git-svn-id: svn://busybox.net/trunk/busybox@8874 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from vodz to correct 'grep -e pattern1 -e pattern2' logicandersen2004-05-261-5/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8868 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Larry Doolittle writes:andersen2004-04-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 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 git-svn-id: svn://busybox.net/trunk/busybox@8759 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove trailing whitespace. Update copyright to include 2004.andersen2004-03-151-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8630 69ca8d6d-28ef-0310-b511-8ec308f3f277
* last_patch89 from vodz:andersen2003-06-201-176/+179
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 git-svn-id: svn://busybox.net/trunk/busybox@6939 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix segfault when cleaning upbug12003-04-271-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6819 69ca8d6d-28ef-0310-b511-8ec308f3f277
* grep -f support, adds only 60 Bytes, but regex's now compiled asbug12003-04-271-27/+48
| | | | | | | required, rather than being pre-compiled. git-svn-id: svn://busybox.net/trunk/busybox@6818 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Major coreutils update.mjn32003-03-191-13/+11
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6751 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Change if(x)free(x); to free(x);aaronl2002-11-281-4/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6055 69ca8d6d-28ef-0310-b511-8ec308f3f277
* * findutils/grep.c (grep_main): Remove unnecessary use of junk.kraai2002-02-221-3/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@4260 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix undeclared variable error.kraai2001-11-201-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@3759 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Usr get_last_path_component() name basename()andersen2001-11-201-1/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@3737 69ca8d6d-28ef-0310-b511-8ec308f3f277
* oopsandersen2001-11-191-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@3714 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More scrubbingandersen2001-11-191-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@3713 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fixup CLEANUP behaviorandersen2001-11-191-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@3709 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Convert strdup call to xstrdup, and calloc calls to xcalloc (patch fromkraai2001-11-121-3/+3
| | | | | | | Steve Merrifield). git-svn-id: svn://busybox.net/trunk/busybox@3667 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add in grep -E supportandersen2001-11-101-0/+8
| | | | git-svn-id: svn://busybox.net/trunk/busybox@3653 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make egrep only set REG_EXTENDED flag.kraai2001-10-311-1/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@3621 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Charles Steinkuehler <charles@steinkuehler.net>andersen2001-10-311-0/+1
| | | | | | | to properly handle extended regexps for egrep git-svn-id: svn://busybox.net/trunk/busybox@3608 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Use extended regular expressions when invoked as egrep (noted and initialkraai2001-10-291-0/+5
| | | | | | | patch by Charles Steinkuehler). git-svn-id: svn://busybox.net/trunk/busybox@3601 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Major rework of the directory structure and the entire build system.andersen2001-10-241-18/+18
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@3561 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Scrub up some function prototypes.andersen2001-10-181-1/+0
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@3540 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix behavior of grep -lc to match GNU grep. SuS2 is ambiguousandersen2001-07-311-1/+4
| | | | | | | | on the correct behavior, so acting like GNU grep seems best -Erik git-svn-id: svn://busybox.net/trunk/busybox@3176 69ca8d6d-28ef-0310-b511-8ec308f3f277
* grep failed to compile when BB_FEATURE_CLEAN_UP was defined -- types were wrong.andersen2001-05-291-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2762 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Added support for grep -e and grep -f, closes bug #1164. Also added somemarkw2001-05-241-95/+142
| | | | | | | testcases for these new features. git-svn-id: svn://busybox.net/trunk/busybox@2722 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fixed extra -- lines (noted by Christophe Boyanique).kraai2001-05-221-1/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2699 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fixed mishandling of -c & -l options and accounted for case when we'remarkw2001-05-211-7/+16
| | | | | | | grepping only one file. git-svn-id: svn://busybox.net/trunk/busybox@2692 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Change 'printf("%s\n", ...)' into 'puts(...)'. Noted and patched in hostname.ckraai2001-05-161-1/+1
| | | | | | | by Larry Doolittle. git-svn-id: svn://busybox.net/trunk/busybox@2653 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fixed a subtle bug in the handling of -l and -c flags.markw2001-05-141-19/+19
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2637 69ca8d6d-28ef-0310-b511-8ec308f3f277
* The tiniest of bracket-placement fixes.markw2001-04-171-5/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2358 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make 'grep -l' workandersen2001-04-091-5/+16
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2290 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fixed option parsing. Grep would continue grepping, even when given a bad /markw2001-04-091-0/+2
| | | | | | | invalid option. Closes bug #1146. git-svn-id: svn://busybox.net/trunk/busybox@2289 69ca8d6d-28ef-0310-b511-8ec308f3f277
* This patch, put together by Manuel Novoa III, is a merge of workandersen2001-02-141-1/+1
| | | | | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. git-svn-id: svn://busybox.net/trunk/busybox@1805 69ca8d6d-28ef-0310-b511-8ec308f3f277