| Commit message (Expand) | Author | Age | Files | Lines |
* | convert fgetln to getline. this improves portability and sets a good |  tedu | 2019-01-31 | 1 | -3/+7 |
* | rework grep_open to be more careful about directories. |  tedu | 2019-01-23 | 1 | -3/+1 |
* | - add max-count to SYNOPSIS |  jmc | 2017-12-10 | 1 | -5/+6 |
* | Add support for the non-standard grep -m extension. |  pirofti | 2017-12-09 | 1 | -5/+18 |
* | fix exit status on pledge(2) error, where it should be >1 |  gsoares | 2015-11-28 | 1 | -2/+2 |
* | Change all tame callers to namechange to pledge(2). |  deraadt | 2015-10-09 | 1 | -3/+3 |
* | grep only opens files read-only, reads via stdio or other methods, performs |  deraadt | 2015-10-03 | 1 | -1/+4 |
* | use strtonum to parse the number of lines of context. |  dlg | 2015-08-27 | 1 | -10/+9 |
* | Add warning when user specifies -R but no files, like GNU grep. |  millert | 2015-04-30 | 1 | -1/+3 |
* | Don't include limits.h or sys/limits.h since grep.h already does it |  millert | 2015-03-16 | 1 | -2/+1 |
* | 1. They're flags, not counters. Set to one instead of incrementing. |  tedu | 2015-01-10 | 1 | -21/+13 |
* | use reallocarray() |  deraadt | 2014-12-01 | 1 | -3/+4 |
* | Prefer setvbuf() to setlinebuf() for portability; ok deraadt@ |  millert | 2014-11-26 | 1 | -2/+2 |
* | Make option string/struct const (since it is...). I've had this |  millert | 2014-11-26 | 1 | -4/+4 |
* | Fix exit status when there is an error reading a file. |  millert | 2012-12-29 | 1 | -2/+3 |
* | add support for -o to only print the match. |  tedu | 2011-07-08 | 1 | -5/+9 |
* | add -H (opposite of -h) to always print name. ok deraadt millert |  tedu | 2011-03-04 | 1 | -6/+11 |
* | Remove the "fast" grep code if SMALL. This has the side effect of breaking |  tedu | 2010-07-02 | 1 | -2/+12 |
* | Fix "grep -e foo -w" crash. The problem lies in 'e' getopt clause |  jacekm | 2010-04-20 | 1 | -4/+17 |
* | remove some non-POSIX standard non-GNU defacto standard options, mostly |  tedu | 2010-04-05 | 1 | -25/+6 |
* | use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsg |  deraadt | 2007-09-02 | 1 | -3/+3 |
* | - Be explicit on command line checking, instead of relying on patterns, |  kili | 2007-02-13 | 1 | -18/+9 |
* | Check length before checking index of len - 1. |  ray | 2006-11-02 | 1 | -2/+2 |
* | Allow zero-length patterns with -x so |  jaredy | 2006-09-26 | 1 | -3/+3 |
* | Break patterns containing newlines into multiple patterns like POSIX says. |  otto | 2006-03-07 | 1 | -3/+15 |
* | delint; remove redundant vars and functions; ok jaredy@ |  otto | 2006-02-09 | 1 | -3/+1 |
* | Make the processing of patterns collected from files specified by -f |  jaredy | 2005-04-03 | 1 | -3/+21 |
* | Protect begin and end of word markers added to the pattern when |  otto | 2005-04-03 | 1 | -6/+11 |
* | Remove block based mmap optimization. There are newline problems |  otto | 2004-10-03 | 1 | -6/+1 |
* | various fixes to make this page a bit clearer and hopefully a bit |  jmc | 2004-09-28 | 1 | -5/+5 |
* | spacing |  deraadt | 2004-08-05 | 1 | -2/+2 |
* | Add a new past path for fgrep that is just a simplified version of |  millert | 2004-05-07 | 1 | -31/+14 |
* | Implement --line-buffered |  otto | 2004-04-02 | 1 | -3/+12 |
* | Fix anchors (^ or $) in -w mode broken by the last commit's -w overhaul. |  millert | 2004-02-04 | 1 | -3/+10 |
* | Previously, in -w mode, for each match on a line grep would check |  millert | 2004-01-25 | 1 | -4/+10 |
* | Sync usage() with SYNOPSIS in grep(1). |  mcbride | 2003-12-11 | 1 | -4/+5 |
* | Fix "grep -number" support for multi-digit numbers. At issue is |  millert | 2003-09-07 | 1 | -10/+10 |
* | When reallocing pattern, use sizeof(*pattern) not sizeof(int). |  millert | 2003-07-16 | 1 | -3/+3 |
* | range-check numeric arguments (-num, -A num, -B num) |  millert | 2003-07-14 | 1 | -8/+22 |
* | grep should exit(2) on error, not exit(1) (1 means no matches found). |  millert | 2003-07-10 | 1 | -4/+4 |
* | knf |  deraadt | 2003-07-10 | 1 | -33/+33 |
* | Fix parsing of -NUMBER. We now do things a digit at a time and |  millert | 2003-07-10 | 1 | -8/+10 |
* | o remove useless cast to int from gzread() call |  millert | 2003-06-25 | 1 | -8/+8 |
* | actually do fgrep. -G -F and -E are now mutally exclusive, and override |  tedu | 2003-06-24 | 1 | -30/+36 |
* | strncpy -> memcpy per deraadt suggestion. |  tedu | 2003-06-23 | 1 | -2/+3 |
* | go back to using strncpy. for long patterns, strlcpy reads too much |  tedu | 2003-06-23 | 1 | -2/+3 |
* | faster grep for simple patterns. derived from a patch by sean farley. |  tedu | 2003-06-23 | 1 | -5/+38 |
* | minor tweaks |  deraadt | 2003-06-23 | 1 | -2/+3 |
* | use strlcpy, not strncpy. ok deraadt@ millert@ |  tedu | 2003-06-23 | 1 | -5/+4 |
* | spelling |  tedu | 2003-06-23 | 1 | -2/+2 |