diff options
Diffstat (limited to 'textproc/bsdgrep/patches/patch-ab')
-rw-r--r-- | textproc/bsdgrep/patches/patch-ab | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/textproc/bsdgrep/patches/patch-ab b/textproc/bsdgrep/patches/patch-ab new file mode 100644 index 00000000000..f92049dd5fc --- /dev/null +++ b/textproc/bsdgrep/patches/patch-ab @@ -0,0 +1,106 @@ +$NetBSD: patch-ab,v 1.1.1.1 2002/11/19 07:15:14 cjep Exp $ + +--- grep.1.orig Fri Oct 29 17:02:36 1999 ++++ grep.1 +@@ -35,10 +35,10 @@ + .Dt GREP 1 + .Os + .Sh NAME +-.Nm grep, egrep, fgrep. zgrep ++.Nm bgrep, egrep, fgrep, zgrep + .Nd file pattern searcher + .Sh SYNOPSIS +-.Nm grep ++.Nm bgrep + .Op Fl AB Ar num + .Op Fl CEFGHLPRSVZabchilnoqsvwx + .Op Fl e Ar pattern +@@ -46,7 +46,7 @@ + .Op Ar + .Sh DESCRIPTION + The +-.Nm grep ++.Nm bgrep + utilities search the given input files selecting lines that match one + or more patterns. + By default, a pattern matches an input line if any regular expression +@@ -57,7 +57,7 @@ + to the standard output. + .Pp + The +-.Nm grep ++.Nm bgrep + utility is used for simple patterns and + .Xr ex 1 + or +@@ -74,7 +74,7 @@ + the input. + The + .Nm zgrep +-utility acts like grep, but accepts input files compressed with the ++utility acts like bgrep, but accepts input files compressed with the + .Xr compress 1 + or + .Xr gzip 1 +@@ -99,19 +99,19 @@ + .Ar 2 . + .It Fl E + Force +-.Nm grep ++.Nm bgrep + to behave as + .Nm egrep. + .It Fl F + Force +-.Nm grep ++.Nm bgrep + to behave as + .Nm fgrep. + .It Fl G + Force +-.Nm grep ++.Nm bgrep + to behave as +-.Nm grep. ++.Nm bgrep. + .It Fl H + If + .Fl R +@@ -138,7 +138,7 @@ + Display version information. + .It Fl Z + Force +-.Nm grep ++.Nm bgrep + to behave as + .Nm zgrep . + .It Fl a +@@ -204,7 +204,7 @@ + If no file arguments are specified, the standard input is used. + .Pp + The +-.Nm grep ++.Nm bgrep + utility exits with one of the following values: + .Pp + .Bl -tag -width flag -compact +@@ -243,16 +243,16 @@ + .Sh EXAMPLES + To find all occurrences of the word patricia in a file: + .Pp +-.Dl grep patricia myfile ++.Dl bgrep patricia myfile + .Pp + To find all occurrences of the pattern + .Ql \&.Pp + at the beginning of a line: + .Pp +-.Dl grep '^\e.Pp' ++.Dl bgrep '^\e.Pp' + .Pp + The apostrophes assure the entire expression is evaluated by +-.Nm grep ++.Nm bgrep + instead of by the + user's shell. + The caret |