Age | Commit message (Expand) | Author |
2023-11-15 | procline: only reduce mcount once per line, not once per match. | Todd C. Miller |
2023-01-04 | - use Fl instead of Ar for print0; from josiah frentsos | Jason McIntyre |
2022-07-12 | grep: simplify printline, no functional changes | Omar Polo |
2022-06-26 | add --null to usage() forgot in previous commit. reminded by jmc@, thanks! | op |
2022-06-26 | grep: add --null flag | op |
2022-05-30 | grep(1): print full context when using match count | Dave Voutila |
2021-12-28 | Fix printing of -- marker when using -A as noted by gnezdo@ | Otto Moerbeek |
2021-12-15 | grep: Add missing unistd.h and limits.h includes | Theo Buehler |
2021-03-10 | zlib functions take a gzFile not gzFile * (gzFile is already a pointer). | Todd C. Miller |
2020-07-23 | Change line counter from int to unsigned long long to reduce overflow. | Martijn van Duren |
2019-12-03 | With -R and an implicit ".", don't prepend file paths with "./" | Jeremie Courreges-Anglas |
2019-12-03 | Document implicit "." default file for -R | kn |
2019-12-02 | With -R assume that "." was passed instead of printing a warning | Jeremie Courreges-Anglas |
2019-10-07 | jmc is a stickler for consistency. | Ted Unangst |
2019-10-07 | add --label to usage. thx jmc | Ted Unangst |
2019-10-07 | two compat features to allow the zstdgrep script to work. | Ted Unangst |
2019-07-18 | Delete documentation of --max-count, which is merely an alias of | Ingo Schwarze |
2019-07-17 | when combining -o and -b, print the byte offset of the pattern, not line. | Ted Unangst |
2019-01-31 | convert fgetln to getline. this improves portability and sets a good | Ted Unangst |
2019-01-27 | mmap support was broken in previous submitted diff from lauri tirkkonen | Theo de Raadt |
2019-01-23 | rework grep_open to be more careful about directories. | Ted Unangst |
2017-12-10 | - add max-count to SYNOPSIS | Jason McIntyre |
2017-12-09 | Add support for the non-standard grep -m extension. | Paul Irofti |
2017-04-03 | initialize regmatch_t always, fixes grep -o "" | Ted Unangst |
2016-08-25 | when using -o, we may restart a match in the middle of the line. | Ted Unangst |
2016-04-04 | Reverse search optimization makes no sense (and doesn't work) if | Otto Moerbeek |
2016-03-30 | for some time now mandoc has not required MLINKS to function | Jason McIntyre |
2015-12-22 | cast toupper's argument to unsigned char | mmcc |
2015-12-22 | The loop index in grep_cmp() should be size_t to match the type of | Todd C. Miller |
2015-12-14 | Use long long rather than off_t for line_no to ensure that it's always | mmcc |
2015-12-07 | Represent line numbers with off_t rather than int. This prevents | mmcc |
2015-11-28 | fix exit status on pledge(2) error, where it should be >1 | Gleydson Soares |
2015-10-09 | Change all tame callers to namechange to pledge(2). | Theo de Raadt |
2015-10-03 | grep only opens files read-only, reads via stdio or other methods, performs | Theo de Raadt |
2015-08-27 | use strtonum to parse the number of lines of context. | David Gwynne |
2015-06-25 | Put fts_close() where missing. | Masao Uebayashi |
2015-04-30 | Add warning when user specifies -R but no files, like GNU grep. | Todd C. Miller |
2015-03-16 | Don't include limits.h or sys/limits.h since grep.h already does it | Todd C. Miller |
2015-03-16 | Include limits.h, not sys/limits.h and include stdint.h for SIZE_MAX. | Todd C. Miller |
2015-02-06 | SIZE_MAX is standard, we should be using it in preference to the | Todd C. Miller |
2015-01-16 | Replace <sys/param.h> with <limits.h> and other less dirty headers where | Theo de Raadt |
2015-01-13 | An article on medium.com highlighted that grep | Daniel Dickman |
2015-01-10 | 1. They're flags, not counters. Set to one instead of incrementing. | Ted Unangst |
2014-12-01 | use reallocarray() | Theo de Raadt |
2014-11-26 | Prefer setvbuf() to setlinebuf() for portability; ok deraadt@ | Todd C. Miller |
2014-11-26 | Make option string/struct const (since it is...). I've had this | Todd C. Miller |
2014-11-08 | Check the mode flag being passed in to mmopen() instead of ignoring it. | Brad Smith |
2014-05-20 | Use errc/warnc to simplify code. | Philip Guenther |
2013-11-26 | unsigned char casts for ctype | Theo de Raadt |
2013-11-12 | simple prototype repairs | Theo de Raadt |