Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | An article on medium.com highlighted that grep | 2015-01-13 | 1 | -3/+3 | |
| | | | | | | | | | was available in v4. To quote Ken Thompson, grep appeared "sometime before the 4th edition." ok schwarze@ | ||||
* | remove uesless Pp; | 2013-01-17 | 1 | -3/+2 | |
| | |||||
* | add support for -o to only print the match. | 2011-07-08 | 1 | -4/+6 | |
| | | | | reminded this was useful by ajcoutot | ||||
* | add -H (opposite of -h) to always print name. ok deraadt millert | 2011-03-04 | 1 | -4/+8 | |
| | |||||
* | add an EXIT STATUS section for /usr/bin; | 2010-09-03 | 1 | -3/+3 | |
| | |||||
* | make this page read a little better; | 2010-04-05 | 1 | -4/+4 | |
| | |||||
* | remove some non-POSIX standard non-GNU defacto standard options, mostly | 2010-04-05 | 1 | -22/+4 | |
| | | | | | relating to symlinks that you can get with find. And a bonus fts flag fix. With a small tweak by guenther. ok deraadt guenther jmc millert nicm | ||||
* | bump the posix reference in STANDARDS to IEEE Std 1003.1-2008, with a few | 2009-02-08 | 1 | -3/+3 | |
| | | | | updates to follow; | ||||
* | convert to new .Dd format; | 2007-05-31 | 1 | -2/+2 | |
| | |||||
* | - use a consistent text for STANDARDS | 2007-05-30 | 1 | -2/+2 | |
| | | | | - note which options are extensions to POSIX | ||||
* | - Be explicit on command line checking, instead of relying on patterns, | 2007-02-13 | 1 | -2/+8 | |
| | | | | | | | | | | | | | | | | which may be NULL (e.g. -e ''). - let add_pattern() decide how to deal with empty patterns, don't do magic in read_patterns(). This unbreaks stuff like grep -e '', and makes grep -f <file> more POSIX compliant. Semantics for grep -f /dev/null (or any other empty file) may be questionable, but this case isn't specified by POSIX, and matching nothing at all seems to be sane. Thanks to otto@, who mentioned potential problems related to the -x option with the first patch i sent. ok jaredy@ (some time ago), otto@, millert@ | ||||
* | -nv is a valid combination; confirmed by otto | 2006-03-07 | 1 | -3/+2 | |
| | |||||
* | s/-p1003.1-2003/-p1003.1-2004/g | 2005-06-05 | 1 | -2/+2 | |
| | |||||
* | clarify what -a does; | 2005-01-06 | 1 | -1/+9 | |
| | | | | prod and ok deraadt@ | ||||
* | remove the section on extended regular expressions, and point | 2004-10-04 | 1 | -41/+8 | |
| | | | | people instead to re_format.7: there is now a list of EREs there; | ||||
* | when stdin is searched, -L and -l print `(standard input)', not `-'; | 2004-09-28 | 1 | -5/+5 | |
| | | | | from alexander taler (pr #3937); | ||||
* | various fixes to make this page a bit clearer and hopefully a bit | 2004-09-28 | 1 | -126/+209 | |
| | | | | | | more helpful; this includes some ideas/fixes from otto and jared; | ||||
* | -w uses [[:<:]] and [[:>:]], not \< and \>, | 2004-04-17 | 1 | -4/+4 | |
| | | | | | | | and it's documented in re_format(7), not ex(1); from jared yanovich; ok beck@ | ||||
* | remove unnecessary .Sm macros (oops, this is my fault it ever | 2004-04-03 | 1 | -3/+1 | |
| | | | | made it into the tree); | ||||
* | Document --line-buffered | 2004-04-02 | 1 | -1/+8 | |
| | | | | ok jmc@ | ||||
* | simpler special character list. provoked by Patrick Latifi ok jmc@ | 2004-03-15 | 1 | -2/+2 | |
| | |||||
* | -b reports offsets in bytes. | 2004-01-19 | 1 | -2/+2 | |
| | | | | ok millert@ | ||||
* | Document use of [pattern] without -e, give example of -v with multiple | 2003-12-11 | 1 | -1/+6 | |
| | | | | | | patterns. ok deraadt@ jmc@ | ||||
* | typos from Jared Yanovich; | 2003-10-20 | 1 | -2/+2 | |
| | |||||
* | Correct wording on -C option. | 2003-09-27 | 1 | -2/+2 | |
| | | | | ok jmc@ | ||||
* | Add curly braces {} to the list of special characters in egrep mode. | 2003-08-20 | 1 | -2/+4 | |
| | | | | From Piotr Domagalski, closes PR 3405 | ||||
* | typo, pr3396 from piotr domagalski | 2003-08-11 | 1 | -2/+2 | |
| | |||||
* | Make it clear what -C does w/o having to read the description of -A/-B. | 2003-07-17 | 1 | -1/+2 | |
| | | | | Lack of clarity pointed out by Sam Smith, different fix suggested by jmc@ | ||||
* | - .Ql Li -> .Ql (Ql already provides literal font) | 2003-07-15 | 1 | -5/+4 | |
| | | | | - remove a .Pp | ||||
* | restore grep -v semantics, print lines that don't match any (mismatch all) | 2003-07-10 | 1 | -3/+2 | |
| | | | | patterns. ok tedu@, millert@ | ||||
* | clarify operation of -f. spotted by jmc@, new text by James Howard | 2003-06-24 | 1 | -7/+4 | |
| | |||||
* | document two long options without short equivs. | 2003-06-23 | 1 | -1/+22 | |
| | | | | ok and help jmc@ | ||||
* | spelling | 2003-06-23 | 1 | -3/+3 | |
| | |||||
* | better detetection/handling of binary files. | 2003-06-23 | 1 | -3/+7 | |
| | | | | | | | | make -a do the right thing, doc and implement -U, -I. add --help and --mmap for compatibility. some other minor fixes. some from NetBSD. ok deraadt@ | ||||
* | 3 clause UCB license | 2003-06-22 | 1 | -6/+2 | |
| | |||||
* | proper $OpenBSD$ | 2003-06-22 | 1 | -0/+1 | |
| | |||||
* | tweaks by jmc and i | 2003-06-22 | 1 | -32/+43 | |
| | |||||
* | freegrep 0.16 | 2003-06-22 | 1 | -208/+222 | |
| | |||||
* | - section reorder | 2003-06-10 | 1 | -56/+64 | |
| | | | | | | | | | - COMPATIBILITY merge - macro cleanup - kill whitespace at EOL - new sentence, new line ssh pages ok markus@ | ||||
* | add missing .El's for .Bl macros; | 2003-04-25 | 1 | -1/+2 | |
| | |||||
* | ascii -> ASCII | 2003-03-31 | 1 | -2/+2 | |
| | |||||
* | more SEE ALSO fixes. | 2002-11-09 | 1 | -2/+2 | |
| | |||||
* | complete grep clone by harding@motd.ca; everything is there, but it is | 2001-09-21 | 1 | -0/+261 | |
slow because libc regexp is slow. Anyone out there have the balls to sit down and optimize libc regexp? |