More __FreeBSD__ -> __DragonFly__ translation
[dragonfly.git] / gnu / usr.bin / grep / grep.1
1 .\" grep man page
2 .\" $FreeBSD: src/gnu/usr.bin/grep/grep.1,v 1.16.2.3 2001/11/27 08:25:45 ru Exp $
3 .\" $DragonFly: src/gnu/usr.bin/grep/grep.1,v 1.2 2003/06/17 04:25:45 dillon Exp $
4 .if !\n(.g \{\
5 .       if !\w|\*(lq| \{\
6 .               ds lq ``
7 .               if \w'\(lq' .ds lq "\(lq
8 .       \}
9 .       if !\w|\*(rq| \{\
10 .               ds rq ''
11 .               if \w'\(rq' .ds rq "\(rq
12 .       \}
13 .\}
14 .de Id
15 .ds Dt \\$4
16 ..
17 .Id $Id: grep.1,v 1.9 2000/01/26 03:42:16 alainm Exp $
18 .TH GREP 1 \*(Dt "GNU Project"
19 .SH NAME
20 grep, egrep, fgrep, zgrep \- print lines matching a pattern
21 .SH SYNOPSIS
22 .B grep
23 .RI [ options ]
24 .I PATTERN
25 .RI [ FILE .\|.\|.]
26 .br
27 .B grep
28 .RI [ options ]
29 .RB [ \-e
30 .I PATTERN
31 |
32 .B \-f
33 .IR FILE ]
34 .RI [ FILE .\|.\|.]
35 .SH DESCRIPTION
36 .B grep
37 searches the named input
38 .IR FILE s
39 (or standard input if no files are named, or
40 the file name
41 .B \-
42 is given)
43 for lines containing a match to the given
44 .IR PATTERN .
45 By default,
46 .B grep
47 prints the matching lines.
48 .PP
49 In addition, two variant programs
50 .B egrep
51 and
52 .B fgrep
53 are available.
54 .B egrep
55 is the same as
56 .BR "grep\ \-E" .
57 .B fgrep
58 is the same as
59 .BR "grep\ \-F" .
60 .B zgrep
61 is the same as
62 .BR "grep\ \-Z" .
63 .SH OPTIONS
64 .TP
65 .BI \-A " NUM" "\fR,\fP \-\^\-after-context=" NUM
66 Print
67 .I NUM
68 lines of trailing context after matching lines.
69 .TP
70 .BR \-a ", " \-\^\-text
71 Process a binary file as if it were text; this is equivalent to the
72 .B \-\^\-binary-files=text
73 option.
74 .TP
75 .BI \-B " NUM" "\fR,\fP \-\^\-before-context=" NUM
76 Print
77 .I NUM
78 lines of leading context before matching lines.
79 .TP
80 \fB\-C\fP [\fINUM\fP], \fB\-\fP\fINUM\fP, \fB\-\^\-context\fP[\fB=\fP\fINUM\fP]
81 Print
82 .I NUM
83 lines (default 2) of output context.
84 .TP
85 .BR \-b ", " \-\^\-byte-offset
86 Print the byte offset within the input file before
87 each line of output.
88 .TP
89 .BI \-\^\-binary-files= TYPE
90 If the first few bytes of a file indicate that the file contains binary
91 data, assume that the file is of type
92 .IR TYPE .
93 By default,
94 .I TYPE
95 is
96 .BR binary ,
97 and
98 .B grep
99 normally outputs either
100 a one-line message saying that a binary file matches, or no message if
101 there is no match.
102 If
103 .I TYPE
104 is
105 .BR without-match ,
106 .B grep
107 assumes that a binary file does not match; this is equivalent to the 
108 .B \-I
109 option.
110 If
111 .I TYPE
112 is
113 .BR text ,
114 .B grep
115 processes a binary file as if it were text; this is equivalent to the
116 .B \-a
117 option.
118 .I Warning:
119 .B "grep \-\^\-binary-files=text"
120 might output binary garbage,
121 which can have nasty side effects if the output is a terminal and if the
122 terminal driver interprets some of it as commands.
123 .TP
124 .BR \-c ", " \-\^\-count
125 Suppress normal output; instead print a count of
126 matching lines for each input file.
127 With the
128 .BR \-v ", " \-\^\-invert-match
129 option (see below), count non-matching lines.
130 .TP
131 .BI \-d " ACTION" "\fR,\fP \-\^\-directories=" ACTION
132 If an input file is a directory, use
133 .I ACTION
134 to process it.  By default,
135 .I ACTION
136 is
137 .BR read ,
138 which means that directories are read just as if they were ordinary files.
139 If
140 .I ACTION
141 is
142 .BR skip ,
143 directories are silently skipped.
144 If
145 .I ACTION
146 is
147 .BR recurse ,
148 .B
149 grep reads all files under each directory, recursively;
150 this is equivalent to the
151 .B \-r
152 option.
153 .TP
154 .BR \-E ", " \-\^\-extended-regexp
155 Interpret
156 .I PATTERN
157 as an extended regular expression (see below).
158 .TP
159 .BI \-e " PATTERN" "\fR,\fP \-\^\-regexp=" PATTERN
160 Use
161 .I PATTERN
162 as the pattern; useful to protect patterns beginning with
163 .BR \- .
164 .TP
165 .BR \-F ", " \-\^\-fixed-strings
166 Interpret
167 .I PATTERN
168 as a list of fixed strings, separated by newlines,
169 any of which is to be matched.
170 .TP
171 .BI \-f " FILE" "\fR,\fP \-\^\-file=" FILE
172 Obtain patterns from
173 .IR FILE ,
174 one per line.
175 The empty file contains zero patterns, and therfore matches nothing.
176 .TP
177 .BR \-G ", " \-\^\-basic-regexp
178 Interpret
179 .I PATTERN
180 as a basic regular expression (see below).  This is the default.
181 .TP
182 .BR \-H ", " \-\^\-with-filename
183 Print the filename for each match.
184 .TP
185 .BR \-h ", " \-\^\-no-filename
186 Suppress the prefixing of filenames on output
187 when multiple files are searched.
188 .TP
189 .B \-\^\-help
190 Output a brief help message.
191 .TP
192 .BR \-I
193 Process a binary file as if it did not contain matching data; this is
194 equivalent to the
195 .B \-\^\-binary-files=without-match
196 option.
197 .TP
198 .BR \-i ", " \-\^\-ignore-case
199 Ignore case distinctions in both the
200 .I PATTERN
201 and the input files.
202 .TP
203 .BR \-L ", " \-\^\-files-without-match
204 Suppress normal output; instead print the name
205 of each input file from which no output would
206 normally have been printed.  The scanning will stop
207 on the first match.
208 .TP
209 .BR \-l ", " \-\^\-files-with-matches
210 Suppress normal output; instead print
211 the name of each input file from which output
212 would normally have been printed.  The scanning will
213 stop on the first match.
214 .TP
215 .B \-\^\-mmap
216 If possible, use the
217 .BR mmap (2)
218 system call to read input, instead of
219 the default
220 .BR read (2)
221 system call.  In some situations,
222 .B \-\^\-mmap
223 yields better performance.  However,
224 .B \-\^\-mmap
225 can cause undefined behavior (including core dumps)
226 if an input file shrinks while
227 .B grep
228 is operating, or if an I/O error occurs.
229 .TP
230 .BR \-n ", " \-\^\-line-number
231 Prefix each line of output with the line number
232 within its input file.
233 .TP
234 .BR \-q ", " \-\^\-quiet ", " \-\^\-silent
235 Quiet; suppress normal output.  The scanning will stop
236 on the first match.
237 Also see the
238 .B \-s
239 or
240 .B \-\^\-no-messages
241 option below.
242 .TP
243 .BR \-r ", " \-\^\-recursive
244 Read all files under each directory, recursively;
245 this is equivalent to the
246 .B "\-d recurse"
247 option.
248 .TP
249 .BR \-s ", " \-\^\-no-messages
250 Suppress error messages about nonexistent or unreadable files.
251 Portability note: unlike \s-1GNU\s0
252 .BR grep ,
253 traditional
254 .B grep
255 did not conform to \s-1POSIX.2\s0, because traditional
256 .B grep
257 lacked a
258 .B \-q
259 option and its
260 .B \-s
261 option behaved like \s-1GNU\s0
262 .BR grep 's
263 .B \-q
264 option.
265 Shell scripts intended to be portable to traditional
266 .B grep
267 should avoid both
268 .B \-q
269 and
270 .B \-s
271 and should redirect output to /dev/null instead.
272 .TP
273 .BR \-U ", " \-\^\-binary
274 Treat the file(s) as binary.  By default, under MS-DOS and MS-Windows,
275 .BR grep
276 guesses the file type by looking at the contents of the first 32KB
277 read from the file.  If
278 .BR grep
279 decides the file is a text file, it strips the CR characters from the
280 original file contents (to make regular expressions with
281 .B ^
282 and
283 .B $
284 work correctly).  Specifying
285 .B \-U
286 overrules this guesswork, causing all files to be read and passed to the
287 matching mechanism verbatim; if the file is a text file with CR/LF
288 pairs at the end of each line, this will cause some regular
289 expressions to fail.
290 This option has no effect on platforms other than MS-DOS and
291 MS-Windows.
292 .TP
293 .BR \-u ", " \-\^\-unix-byte-offsets
294 Report Unix-style byte offsets.  This switch causes
295 .B grep
296 to report byte offsets as if the file were Unix-style text file, i.e. with
297 CR characters stripped off.  This will produce results identical to running
298 .B grep
299 on a Unix machine.  This option has no effect unless
300 .B \-b
301 option is also used;
302 it has no effect on platforms other than MS-DOS and MS-Windows.
303 .TP
304 .BR \-V ", " \-\^\-version
305 Print the version number of
306 .B grep
307 to standard error.  This version number should
308 be included in all bug reports (see below).
309 .TP
310 .BR \-v ", " \-\^\-invert-match
311 Invert the sense of matching, to select non-matching lines.
312 .TP
313 .BR \-w ", " \-\^\-word-regexp
314 Select only those lines containing matches that form whole words.
315 The test is that the matching substring must either be at the
316 beginning of the line, or preceded by a non-word constituent
317 character.  Similarly, it must be either at the end of the line
318 or followed by a non-word constituent character.  Word-constituent
319 characters are letters, digits, and the underscore.
320 .TP
321 .BR \-x ", " \-\^\-line-regexp
322 Select only those matches that exactly match the whole line.
323 .TP
324 .B \-y
325 Obsolete synonym for
326 .BR \-i .
327 .TP
328 .B \-\^\-null
329 Output a zero byte (the \s-1ASCII\s0
330 .B NUL
331 character) instead of the character that normally follows a file name.
332 For example,
333 .B "grep \-l \-\^\-null"
334 outputs a zero byte after each file name instead of the usual newline.
335 This option makes the output unambiguous, even in the presence of file
336 names containing unusual characters like newlines.  This option can be
337 used with commands like
338 .BR "find \-print0" ,
339 .BR "perl \-0" ,
340 .BR "sort \-z" ,
341 and
342 .B "xargs \-0"
343 to process arbitrary file names,
344 even those that contain newline characters.
345 .TP
346 .BR \-Z ", " \-\^\-decompress
347 Decompress the input data before searching.
348 This option is only available if compiled with zlib(3) library.
349 .SH "REGULAR EXPRESSIONS"
350 A regular expression is a pattern that describes a set of strings.
351 Regular expressions are constructed analogously to arithmetic
352 expressions, by using various operators to combine smaller expressions.
353 .PP
354 .B grep
355 understands two different versions of regular expression syntax:
356 \*(lqbasic\*(rq and \*(lqextended.\*(rq  In
357 .RB "\s-1GNU\s0\ " grep ,
358 there is no difference in available functionality using either syntax.
359 In other implementations, basic regular expressions are less powerful.
360 The following description applies to extended regular expressions;
361 differences for basic regular expressions are summarized afterwards.
362 .PP
363 The fundamental building blocks are the regular expressions that match
364 a single character.  Most characters, including all letters and digits,
365 are regular expressions that match themselves.  Any metacharacter with
366 special meaning may be quoted by preceding it with a backslash.
367 .PP
368 A list of characters enclosed by
369 .B [
370 and
371 .B ]
372 matches any single
373 character in that list; if the first character of the list
374 is the caret
375 .B ^
376 then it matches any character
377 .I not
378 in the list.
379 For example, the regular expression
380 .B [0123456789]
381 matches any single digit.  A range of characters
382 may be specified by giving the first and last characters, separated
383 by a hyphen.
384 Finally, certain named classes of characters are predefined.
385 Their names are self explanatory, and they are
386 .BR [:alnum:] ,
387 .BR [:alpha:] ,
388 .BR [:cntrl:] ,
389 .BR [:digit:] ,
390 .BR [:graph:] ,
391 .BR [:lower:] ,
392 .BR [:print:] ,
393 .BR [:punct:] ,
394 .BR [:space:] ,
395 .BR [:upper:] ,
396 and
397 .BR [:xdigit:].
398 For example,
399 .B [[:alnum:]]
400 means
401 .BR [0-9A-Za-z] ,
402 except the latter form depends upon the \s-1POSIX\s0 locale and the
403 \s-1ASCII\s0 character encoding, whereas the former is independent
404 of locale and character set.
405 (Note that the brackets in these class names are part of the symbolic
406 names, and must be included in addition to the brackets delimiting
407 the bracket list.)  Most metacharacters lose their special meaning
408 inside lists.  To include a literal
409 .B ]
410 place it first in the list.  Similarly, to include a literal
411 .B ^
412 place it anywhere but first.  Finally, to include a literal
413 .B \-
414 place it last.
415 .PP
416 The period
417 .B .
418 matches any single character.
419 The symbol
420 .B \ew
421 is a synonym for
422 .B [[:alnum:]]
423 and
424 .B \eW
425 is a synonym for
426 .BR [^[:alnum]] .
427 .PP
428 The caret
429 .B ^
430 and the dollar sign
431 .B $
432 are metacharacters that respectively match the empty string at the
433 beginning and end of a line.
434 The symbols
435 .B \e<
436 and
437 .B \e>
438 respectively match the empty string at the beginning and end of a word.
439 The symbol
440 .B \eb
441 matches the empty string at the edge of a word,
442 and
443 .B \eB
444 matches the empty string provided it's
445 .I not
446 at the edge of a word.
447 .PP
448 A regular expression may be followed by one of several repetition operators:
449 .PD 0
450 .TP
451 .B ?
452 The preceding item is optional and matched at most once.
453 .TP
454 .B *
455 The preceding item will be matched zero or more times.
456 .TP
457 .B +
458 The preceding item will be matched one or more times.
459 .TP
460 .BI { n }
461 The preceding item is matched exactly
462 .I n
463 times.
464 .TP
465 .BI { n ,}
466 The preceding item is matched
467 .I n
468 or more times.
469 .TP
470 .BI { n , m }
471 The preceding item is matched at least
472 .I n
473 times, but not more than
474 .I m
475 times.
476 .PD
477 .PP
478 Two regular expressions may be concatenated; the resulting
479 regular expression matches any string formed by concatenating
480 two substrings that respectively match the concatenated
481 subexpressions.
482 .PP
483 Two regular expressions may be joined by the infix operator
484 .BR | ;
485 the resulting regular expression matches any string matching
486 either subexpression.
487 .PP
488 Repetition takes precedence over concatenation, which in turn
489 takes precedence over alternation.  A whole subexpression may be
490 enclosed in parentheses to override these precedence rules.
491 .PP
492 The backreference
493 .BI \e n\c
494 \&, where
495 .I n
496 is a single digit, matches the substring
497 previously matched by the
498 .IR n th
499 parenthesized subexpression of the regular expression.
500 .PP
501 In basic regular expressions the metacharacters
502 .BR ? ,
503 .BR + ,
504 .BR { ,
505 .BR | ,
506 .BR ( ,
507 and
508 .BR )
509 lose their special meaning; instead use the backslashed
510 versions
511 .BR \e? ,
512 .BR \e+ ,
513 .BR \e{ ,
514 .BR \e| ,
515 .BR \e( ,
516 and
517 .BR \e) .
518 .PP
519 Traditional
520 .B egrep
521 did not support the
522 .B {
523 metacharacter, and some
524 .B egrep
525 implementations support
526 .B \e{
527 instead, so portable scripts should avoid
528 .B {
529 in
530 .B egrep
531 patterns and should use
532 .B [{]
533 to match a literal
534 .BR { .
535 .PP
536 \s-1GNU\s0
537 .B egrep
538 attempts to support traditional usage by assuming that
539 .B {
540 is not special if it would be the start of an invalid interval
541 specification.  For example, the shell command
542 .B "egrep '{1'"
543 searches for the two-character string
544 .B {1
545 instead of reporting a syntax error in the regular expression.
546 \s-1POSIX.2\s0 allows this behavior as an extension, but portable scripts
547 should avoid it.
548 .SH "ENVIRONMENT VARIABLES"
549 .TP
550 .B GREP_OPTIONS
551 This variable specifies default options to be placed in front of any
552 explicit options.  For example, if
553 .B GREP_OPTIONS
554 is
555 .BR "'\-\^\-binary-files=without-match \-\^\-directories=skip'" ,
556 .B grep
557 behaves as if the two options
558 .B \-\^\-binary-files=without-match
559 and
560 .B \-\^\-directories=skip
561 had been specified before any explicit options.
562 Option specifications are separated by whitespace.
563 A backslash escapes the next character,
564 so it can be used to specify an option containing whitespace or a backslash.
565 .TP
566 \fBLC_ALL\fP, \fBLC_MESSAGES\fP, \fBLANG\fP
567 These variables specify the
568 .B LC_MESSAGES
569 locale, which determines the language that
570 .B grep
571 uses for messages.
572 The locale is determined by the first of these variables that is set.
573 American English is used if none of these environment variables are set,
574 or if the message catalog is not installed, or if
575 .B grep
576 was not compiled with national language support (\s-1NLS\s0).
577 .TP
578 \fBLC_ALL\fP, \fBLC_CTYPE\fP, \fBLANG\fP
579 These variables specify the
580 .B LC_CTYPE
581 locale, which determines the type of characters, e.g., which
582 characters are whitespace.
583 The locale is determined by the first of these variables that is set.
584 The \s-1POSIX\s0 locale is used if none of these environment variables
585 are set, or if the locale catalog is not installed, or if
586 .B grep
587 was not compiled with national language support (\s-1NLS\s0).
588 .TP
589 .B POSIXLY_CORRECT
590 If set,
591 .B grep
592 behaves as \s-1POSIX.2\s0 requires; otherwise,
593 .B grep
594 behaves more like other \s-1GNU\s0 programs.
595 \s-1POSIX.2\s0 requires that options that follow file names must be
596 treated as file names; by default, such options are permuted to the
597 front of the operand list and are treated as options.
598 Also, \s-1POSIX.2\s0 requires that unrecognized options be diagnosed as
599 \*(lqillegal\*(rq, but since they are not really against the law the default
600 is to diagnose them as \*(lqinvalid\*(rq.
601 .SH DIAGNOSTICS
602 Normally, exit status is 0 if matches were found,
603 and 1 if no matches were found.  (The
604 .B \-v
605 option inverts the sense of the exit status.)
606 Exit status is 2 if there were syntax errors
607 in the pattern, inaccessible input files, or
608 other system errors.
609 .SH BUGS
610 Email bug reports to
611 .BR bug-gnu-utils@gnu.org .
612 Be sure to include the word \*(lqgrep\*(rq somewhere in the
613 \*(lqSubject:\*(rq field.
614 .PP
615 Large repetition counts in the
616 .BI { m , n }
617 construct may cause grep to use lots of memory.
618 In addition,
619 certain other obscure regular expressions require exponential time
620 and space, and may cause
621 .B grep
622 to run out of memory.
623 .PP
624 Backreferences are very slow, and may require exponential time.
625 .\" Work around problems with some troff -man implementations.
626 .br