4.3BSD-Reno/src/usr.bin/grep/egrep/grep.1

Compare this file to the similar file:
Show the results in this format:

.\" Copyright (c) 1980, 1990 The Regents of the University of California.
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms are permitted provided
.\" that: (1) source distributions retain this entire copyright notice and
.\" comment, and (2) distributions including binaries display the following
.\" acknowledgement:  ``This product includes software developed by the
.\" University of California, Berkeley and its contributors'' in the
.\" documentation or other materials provided with the distribution and in
.\" all advertising materials mentioning features or use of this software.
.\" Neither the name of the University nor the names of its contributors may
.\" be used to endorse or promote products derived from this software without
.\" specific prior written permission.
.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
.\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
.\"
.\"     @(#)grep.1	6.5 (Berkeley) 7/24/90
.\"
.Dd July 24, 1990
.Dt GREP 1
.Os BSD 4.4
.Sh NAME
.Nm grep
.Nd File pattern searcher.
.Sh SYNOPSIS
.Nm grep
.Op Fl bchilnosvw
.Op Fl e Ar pattern
.Ar
.Nm egrep
.Op Fl bchilnosv
.Op Fl e Ar pattern
.Op Fl f Ar pattern_file
.Ar
.Nm fgrep
.Op Fl bchilnosvx
.Op Fl e Ar pattern
.Op Fl f Ar pattern_file
.Ar
.Sh DESCRIPTION
The
.Nm grep
utilities search the given input files selecting lines
which match one or more patterns; the type of patterns is controlled
by the options specified.
By default, a pattern
matches an input line if any regular expression (RE) in the
pattern matches the input line without its trailing <new-line>.
A null RE matches every line.
Each input line that matches at
least one of the patterns is written to the standard output.
.Pp
For simple patterns or
.Xr ex 1
or
.Xr ed 1
style regular expressions, the
.Nm grep
utility is used.
The
.Nm egrep
utility
can handle extended regular expressions and
embedded <newline>s in pattern
.Nm Fgrep
is quick but is designed to handle fixed strings.
A fixed string
is a string of characters,
each character
is matched only by itself.
The pattern
value can consist of multiple lines with
embedded <newline>s.
In this case, the <newline>s
act as alternation characters, allowing any of the
pattern lines to match a portion of the input.
.Pp
The following options are available:
.Pp
.Tw Fl
.Tp Fl b
The block number on the disk in which a matched pattern is located
is displayed in front of the respective matched line.
.Tp Fl c
Only a count of selected lines is written to standard
output.
.Tc Fl e
.Ws
.Ar expression
.Cx
Specify a pattern used during the search of the
input.
Multiple
.Fl e
options can be used to specify
multiple patterns; an input line is selected of it
matches any of the specified patterns.
.Tc Fl f
.Ws
.Ar pattern_file
.Cx
The pattern is read from the file named by the
pathname pattern_file.
Trailing newlines
in the pattern_file are ignored.
.Pf \&( Nm egrep
and
.Nm fgrep
only).
.Tp Fl h
Never print filename headers with output lines.
.Tp Fl i
The case of letters is ignored in making comparisons \- that is, upper and
lower case are considered identical.
.Tp Fl l
Only the names of files containing selected lines
are written to standard output.
Pathnames are
listed once per file searched.
If the standard
input is searched, the pathname
.Sq Fl
is written.
.Tp Fl n
Each output line is preceded by its relative line
number in the file; each file starting at line 1.
The line number counter is reset for each file processed.
This option is ignored if
.Fl c ,
.Fl l ,
or
.Fl s
is
specified.
.Tp Fl o
Always print filename headers with output lines.
.Tp Fl s
Silent mode.  Nothing is printed (except error messages).
This is useful for checking the error status.
.Tp Fl v
Selected lines are those
.Em not
matching the specified
patterns.
.Tp Fl x
Only input lines selected against an entire fixed
string or regular expression are considered to be
matching lines.
.Pf \&( Nm fgrep
only).
.Tp Fl w
The expression is searched for as a word
(as if surrounded by `\e<' and `\e>', see
.Xr ex  1  . )
.Pf \&( Nm grep
only)
.Pp
.Tp
If no file arguments are specified, the
standard input is used.
.Pp
The
.Nm grep
utility exits with one of the following values:
.Dw Ds
.Dp Li \&0
One or more lines were selected.
.Dp Li \&1
No lines were selected.
.Dp Li \&>1
An error occurred.
.Dp
.Sh EXTENDED REGULAR EXPRESSIONS
The following characters are interpreted by
.Nm egrep :
.Tw Ds
.Tp Cm \&$
Align the match from the end of the line.
.Tp Cm \&^
Align the match from the beginning of the line.
.Tp Cm \&|
Add another pattern (see example below).
.Tp Cm \&?
Match 1 or less sequential repetitions of the pattern.
.Tp Cm \&+
Match 1 or more sequential repetitions of the pattern.
.Tp Cm \&*
Match 0 or more sequential repetitions of the pattern.
.Tp Cm \&[]
Match any single character or range of characters
enclosed in the brackets.
.Tp Cm \&\e
Escape special characters which have meaning to
.Nm egrep ,
the set of {$,.,^,[,],|,?,+,*,(,)}.
.Tp
.Sh EXAMPLES
To find all occurances of the word patricia in a file:
.Pp
.Dl grep patricia myfile
.Pp
To find all occurences to the pattern
.Sq Li \&.Pp
at the beginning of a line:
.Pp
.Dl grep '^\e.Pp'
.Pp
The apostrophys assure the entire expression is evaluated by
.Nm grep
instead of by the
users shell.
The carat or hat
.Sq Li \&^
means
.Em from the beginning of a line ,
and the
.Sq Li \&\e
escapes the
.Sq Li \&.
which would otherwise match any character.
.Pp
A simple example of an extended regular expression:
.Pp
.Dl egrep '19|20|25' calendar
.Pp
Peruses the file calendar looking for either 19, 20
or 25.
.Sh SEE ALSO
.Xr ed 1 ,
.Xr ex 1 ,
.Xr sed 1
.Sh HISTORY
.Nm Grep
appeared in Version 6 AT&T Unix.
.Sh BUGS
Lines are limited to 256 characters; longer lines are truncated.