| 1 |
nigel |
49 |
.TH PCREGREP 1 |
| 2 |
|
|
.SH NAME |
| 3 |
|
|
pcregrep - a grep with Perl-compatible regular expressions. |
| 4 |
|
|
.SH SYNOPSIS |
| 5 |
nigel |
87 |
.B pcregrep [options] [long options] [pattern] [path1 path2 ...] |
| 6 |
nigel |
75 |
. |
| 7 |
nigel |
49 |
.SH DESCRIPTION |
| 8 |
nigel |
63 |
.rs |
| 9 |
|
|
.sp |
| 10 |
nigel |
75 |
\fBpcregrep\fP searches files for character patterns, in the same way as other |
| 11 |
nigel |
49 |
grep commands do, but it uses the PCRE regular expression library to support |
| 12 |
|
|
patterns that are compatible with the regular expressions of Perl 5. See |
| 13 |
nigel |
63 |
.\" HREF |
| 14 |
nigel |
93 |
\fBpcrepattern\fP(3) |
| 15 |
nigel |
63 |
.\" |
| 16 |
nigel |
93 |
for a full description of syntax and semantics of the regular expressions |
| 17 |
|
|
that PCRE supports. |
| 18 |
nigel |
75 |
.P |
| 19 |
nigel |
87 |
Patterns, whether supplied on the command line or in a separate file, are given |
| 20 |
|
|
without delimiters. For example: |
| 21 |
|
|
.sp |
| 22 |
|
|
pcregrep Thursday /etc/motd |
| 23 |
|
|
.sp |
| 24 |
|
|
If you attempt to use delimiters (for example, by surrounding a pattern with |
| 25 |
|
|
slashes, as is common in Perl scripts), they are interpreted as part of the |
| 26 |
ph10 |
279 |
pattern. Quotes can of course be used to delimit patterns on the command line |
| 27 |
|
|
because they are interpreted by the shell, and indeed they are required if a |
| 28 |
ph10 |
392 |
pattern contains white space or shell metacharacters. |
| 29 |
nigel |
75 |
.P |
| 30 |
nigel |
87 |
The first argument that follows any option settings is treated as the single |
| 31 |
|
|
pattern to be matched when neither \fB-e\fP nor \fB-f\fP is present. |
| 32 |
|
|
Conversely, when one or both of these options are used to specify patterns, all |
| 33 |
|
|
arguments are treated as path names. At least one of \fB-e\fP, \fB-f\fP, or an |
| 34 |
|
|
argument pattern must be provided. |
| 35 |
|
|
.P |
| 36 |
nigel |
77 |
If no files are specified, \fBpcregrep\fP reads the standard input. The |
| 37 |
|
|
standard input can also be referenced by a name consisting of a single hyphen. |
| 38 |
|
|
For example: |
| 39 |
|
|
.sp |
| 40 |
|
|
pcregrep some-pattern /file1 - /file3 |
| 41 |
|
|
.sp |
| 42 |
ph10 |
281 |
By default, each line that matches a pattern is copied to the standard |
| 43 |
nigel |
87 |
output, and if there is more than one file, the file name is output at the |
| 44 |
ph10 |
279 |
start of each line, followed by a colon. However, there are options that can |
| 45 |
|
|
change how \fBpcregrep\fP behaves. In particular, the \fB-M\fP option makes it |
| 46 |
|
|
possible to search for patterns that span line boundaries. What defines a line |
| 47 |
|
|
boundary is controlled by the \fB-N\fP (\fB--newline\fP) option. |
| 48 |
nigel |
75 |
.P |
| 49 |
ph10 |
654 |
The amount of memory used for buffering files that are being scanned is |
| 50 |
ph10 |
644 |
controlled by a parameter that can be set by the \fB--buffer-size\fP option. |
| 51 |
ph10 |
654 |
The default value for this parameter is specified when \fBpcregrep\fP is built, |
| 52 |
|
|
with the default default being 20K. A block of memory three times this size is |
| 53 |
|
|
used (to allow for buffering "before" and "after" lines). An error occurs if a |
| 54 |
ph10 |
644 |
line overflows the buffer. |
| 55 |
nigel |
87 |
.P |
| 56 |
ph10 |
644 |
Patterns are limited to 8K or BUFSIZ bytes, whichever is the greater. BUFSIZ is |
| 57 |
|
|
defined in \fB<stdio.h>\fP. When there is more than one pattern (specified by |
| 58 |
|
|
the use of \fB-e\fP and/or \fB-f\fP), each pattern is applied to each line in |
| 59 |
|
|
the order in which they are defined, except that all the \fB-e\fP patterns are |
| 60 |
|
|
tried before the \fB-f\fP patterns. |
| 61 |
|
|
.P |
| 62 |
ph10 |
379 |
By default, as soon as one pattern matches (or fails to match when \fB-v\fP is |
| 63 |
|
|
used), no further patterns are considered. However, if \fB--colour\fP (or |
| 64 |
|
|
\fB--color\fP) is used to colour the matching substrings, or if |
| 65 |
|
|
\fB--only-matching\fP, \fB--file-offsets\fP, or \fB--line-offsets\fP is used to |
| 66 |
|
|
output only the part of the line that matched (either shown literally, or as an |
| 67 |
|
|
offset), scanning resumes immediately following the match, so that further |
| 68 |
|
|
matches on the same line can be found. If there are multiple patterns, they are |
| 69 |
|
|
all tried on the remainder of the line, but patterns that follow the one that |
| 70 |
|
|
matched are not tried on the earlier part of the line. |
| 71 |
ph10 |
281 |
.P |
| 72 |
ph10 |
392 |
This is the same behaviour as GNU grep, but it does mean that the order in |
| 73 |
|
|
which multiple patterns are specified can affect the output when one of the |
| 74 |
ph10 |
379 |
above options is used. |
| 75 |
|
|
.P |
| 76 |
|
|
Patterns that can match an empty string are accepted, but empty string |
| 77 |
ph10 |
445 |
matches are never recognized. An example is the pattern "(super)?(man)?", in |
| 78 |
ph10 |
379 |
which all components are optional. This pattern finds all occurrences of both |
| 79 |
|
|
"super" and "man"; the output differs from matching with "super|man" when only |
| 80 |
|
|
the matching substrings are being shown. |
| 81 |
|
|
.P |
| 82 |
nigel |
87 |
If the \fBLC_ALL\fP or \fBLC_CTYPE\fP environment variable is set, |
| 83 |
|
|
\fBpcregrep\fP uses the value to set a locale when calling the PCRE library. |
| 84 |
|
|
The \fB--locale\fP option can be used to override this. |
| 85 |
nigel |
75 |
. |
| 86 |
ph10 |
685 |
. |
| 87 |
ph10 |
286 |
.SH "SUPPORT FOR COMPRESSED FILES" |
| 88 |
|
|
.rs |
| 89 |
|
|
.sp |
| 90 |
|
|
It is possible to compile \fBpcregrep\fP so that it uses \fBlibz\fP or |
| 91 |
|
|
\fBlibbz2\fP to read files whose names end in \fB.gz\fP or \fB.bz2\fP, |
| 92 |
|
|
respectively. You can find out whether your binary has support for one or both |
| 93 |
|
|
of these file types by running it with the \fB--help\fP option. If the |
| 94 |
|
|
appropriate support is not present, files are treated as plain text. The |
| 95 |
|
|
standard input is always so treated. |
| 96 |
|
|
. |
| 97 |
ph10 |
644 |
. |
| 98 |
nigel |
49 |
.SH OPTIONS |
| 99 |
nigel |
63 |
.rs |
| 100 |
ph10 |
420 |
.sp |
| 101 |
ph10 |
461 |
The order in which some of the options appear can affect the output. For |
| 102 |
|
|
example, both the \fB-h\fP and \fB-l\fP options affect the printing of file |
| 103 |
|
|
names. Whichever comes later in the command line will be the one that takes |
| 104 |
ph10 |
654 |
effect. Numerical values for options may be followed by K or M, to signify |
| 105 |
ph10 |
644 |
multiplication by 1024 or 1024*1024 respectively. |
| 106 |
nigel |
49 |
.TP 10 |
| 107 |
nigel |
77 |
\fB--\fP |
| 108 |
ph10 |
644 |
This terminates the list of options. It is useful if the next item on the |
| 109 |
nigel |
87 |
command line starts with a hyphen but is not an option. This allows for the |
| 110 |
|
|
processing of patterns and filenames that start with hyphens. |
| 111 |
nigel |
49 |
.TP |
| 112 |
nigel |
87 |
\fB-A\fP \fInumber\fP, \fB--after-context=\fP\fInumber\fP |
| 113 |
|
|
Output \fInumber\fP lines of context after each matching line. If filenames |
| 114 |
|
|
and/or line numbers are being output, a hyphen separator is used instead of a |
| 115 |
|
|
colon for the context lines. A line containing "--" is output between each |
| 116 |
nigel |
77 |
group of lines, unless they are in fact contiguous in the input file. The value |
| 117 |
|
|
of \fInumber\fP is expected to be relatively small. However, \fBpcregrep\fP |
| 118 |
nigel |
87 |
guarantees to have up to 8K of following text available for context output. |
| 119 |
nigel |
77 |
.TP |
| 120 |
nigel |
87 |
\fB-B\fP \fInumber\fP, \fB--before-context=\fP\fInumber\fP |
| 121 |
|
|
Output \fInumber\fP lines of context before each matching line. If filenames |
| 122 |
|
|
and/or line numbers are being output, a hyphen separator is used instead of a |
| 123 |
|
|
colon for the context lines. A line containing "--" is output between each |
| 124 |
nigel |
77 |
group of lines, unless they are in fact contiguous in the input file. The value |
| 125 |
|
|
of \fInumber\fP is expected to be relatively small. However, \fBpcregrep\fP |
| 126 |
nigel |
87 |
guarantees to have up to 8K of preceding text available for context output. |
| 127 |
nigel |
77 |
.TP |
| 128 |
ph10 |
644 |
\fB--buffer-size=\fP\fInumber\fP |
| 129 |
|
|
Set the parameter that controls how much memory is used for buffering files |
| 130 |
|
|
that are being scanned. |
| 131 |
|
|
.TP |
| 132 |
nigel |
87 |
\fB-C\fP \fInumber\fP, \fB--context=\fP\fInumber\fP |
| 133 |
|
|
Output \fInumber\fP lines of context both before and after each matching line. |
| 134 |
nigel |
77 |
This is equivalent to setting both \fB-A\fP and \fB-B\fP to the same value. |
| 135 |
|
|
.TP |
| 136 |
nigel |
87 |
\fB-c\fP, \fB--count\fP |
| 137 |
ph10 |
420 |
Do not output individual lines from the files that are being scanned; instead |
| 138 |
|
|
output the number of lines that would otherwise have been shown. If no lines |
| 139 |
|
|
are selected, the number zero is output. If several files are are being |
| 140 |
|
|
scanned, a count is output for each of them. However, if the |
| 141 |
|
|
\fB--files-with-matches\fP option is also used, only those files whose counts |
| 142 |
|
|
are greater than zero are listed. When \fB-c\fP is used, the \fB-A\fP, |
| 143 |
|
|
\fB-B\fP, and \fB-C\fP options are ignored. |
| 144 |
nigel |
49 |
.TP |
| 145 |
nigel |
87 |
\fB--colour\fP, \fB--color\fP |
| 146 |
|
|
If this option is given without any data, it is equivalent to "--colour=auto". |
| 147 |
|
|
If data is required, it must be given in the same shell item, separated by an |
| 148 |
|
|
equals sign. |
| 149 |
|
|
.TP |
| 150 |
|
|
\fB--colour=\fP\fIvalue\fP, \fB--color=\fP\fIvalue\fP |
| 151 |
ph10 |
376 |
This option specifies under what circumstances the parts of a line that matched |
| 152 |
|
|
a pattern should be coloured in the output. By default, the output is not |
| 153 |
|
|
coloured. The value (which is optional, see above) may be "never", "always", or |
| 154 |
|
|
"auto". In the latter case, colouring happens only if the standard output is |
| 155 |
ph10 |
392 |
connected to a terminal. More resources are used when colouring is enabled, |
| 156 |
|
|
because \fBpcregrep\fP has to search for all possible matches in a line, not |
| 157 |
ph10 |
378 |
just one, in order to colour them all. |
| 158 |
ph10 |
519 |
.sp |
| 159 |
ph10 |
378 |
The colour that is used can be specified by setting the environment variable |
| 160 |
|
|
PCREGREP_COLOUR or PCREGREP_COLOR. The value of this variable should be a |
| 161 |
|
|
string of two numbers, separated by a semicolon. They are copied directly into |
| 162 |
|
|
the control string for setting colour on a terminal, so it is your |
| 163 |
|
|
responsibility to ensure that they make sense. If neither of the environment |
| 164 |
|
|
variables is set, the default is "1;31", which gives red. |
| 165 |
nigel |
87 |
.TP |
| 166 |
|
|
\fB-D\fP \fIaction\fP, \fB--devices=\fP\fIaction\fP |
| 167 |
|
|
If an input path is not a regular file or a directory, "action" specifies how |
| 168 |
|
|
it is to be processed. Valid values are "read" (the default) or "skip" |
| 169 |
|
|
(silently skip the path). |
| 170 |
|
|
.TP |
| 171 |
|
|
\fB-d\fP \fIaction\fP, \fB--directories=\fP\fIaction\fP |
| 172 |
|
|
If an input path is a directory, "action" specifies how it is to be processed. |
| 173 |
|
|
Valid values are "read" (the default), "recurse" (equivalent to the \fB-r\fP |
| 174 |
|
|
option), or "skip" (silently skip the path). In the default case, directories |
| 175 |
|
|
are read as if they were ordinary files. In some operating systems the effect |
| 176 |
|
|
of reading a directory like this is an immediate end-of-file. |
| 177 |
|
|
.TP |
| 178 |
ph10 |
286 |
\fB-e\fP \fIpattern\fP, \fB--regex=\fP\fIpattern\fP, \fB--regexp=\fP\fIpattern\fP |
| 179 |
ph10 |
279 |
Specify a pattern to be matched. This option can be used multiple times in |
| 180 |
|
|
order to specify several patterns. It can also be used as a way of specifying a |
| 181 |
|
|
single pattern that starts with a hyphen. When \fB-e\fP is used, no argument |
| 182 |
|
|
pattern is taken from the command line; all arguments are treated as file |
| 183 |
|
|
names. There is an overall maximum of 100 patterns. They are applied to each |
| 184 |
|
|
line in the order in which they are defined until one matches (or fails to |
| 185 |
|
|
match if \fB-v\fP is used). If \fB-f\fP is used with \fB-e\fP, the command line |
| 186 |
|
|
patterns are matched first, followed by the patterns from the file, independent |
| 187 |
|
|
of the order in which these options are specified. Note that multiple use of |
| 188 |
|
|
\fB-e\fP is not the same as a single pattern with alternatives. For example, |
| 189 |
|
|
X|Y finds the first character in a line that is X or Y, whereas if the two |
| 190 |
|
|
patterns are given separately, \fBpcregrep\fP finds X if it is present, even if |
| 191 |
|
|
it follows Y in the line. It finds Y only if there is no X in the line. This |
| 192 |
|
|
really matters only if you are using \fB-o\fP to show the part(s) of the line |
| 193 |
|
|
that matched. |
| 194 |
nigel |
87 |
.TP |
| 195 |
nigel |
77 |
\fB--exclude\fP=\fIpattern\fP |
| 196 |
|
|
When \fBpcregrep\fP is searching the files in a directory as a consequence of |
| 197 |
ph10 |
324 |
the \fB-r\fP (recursive search) option, any regular files whose names match the |
| 198 |
ph10 |
325 |
pattern are excluded. Subdirectories are not excluded by this option; they are |
| 199 |
ph10 |
571 |
searched recursively, subject to the \fB--exclude-dir\fP and |
| 200 |
ph10 |
325 |
\fB--include_dir\fP options. The pattern is a PCRE regular expression, and is |
| 201 |
|
|
matched against the final component of the file name (not the entire path). If |
| 202 |
|
|
a file name matches both \fB--include\fP and \fB--exclude\fP, it is excluded. |
| 203 |
|
|
There is no short form for this option. |
| 204 |
nigel |
77 |
.TP |
| 205 |
ph10 |
571 |
\fB--exclude-dir\fP=\fIpattern\fP |
| 206 |
ph10 |
325 |
When \fBpcregrep\fP is searching the contents of a directory as a consequence |
| 207 |
|
|
of the \fB-r\fP (recursive search) option, any subdirectories whose names match |
| 208 |
|
|
the pattern are excluded. (Note that the \fP--exclude\fP option does not affect |
| 209 |
|
|
subdirectories.) The pattern is a PCRE regular expression, and is matched |
| 210 |
|
|
against the final component of the name (not the entire path). If a |
| 211 |
ph10 |
571 |
subdirectory name matches both \fB--include-dir\fP and \fB--exclude-dir\fP, it |
| 212 |
ph10 |
325 |
is excluded. There is no short form for this option. |
| 213 |
|
|
.TP |
| 214 |
nigel |
87 |
\fB-F\fP, \fB--fixed-strings\fP |
| 215 |
|
|
Interpret each pattern as a list of fixed strings, separated by newlines, |
| 216 |
|
|
instead of as a regular expression. The \fB-w\fP (match as a word) and \fB-x\fP |
| 217 |
|
|
(match whole line) options can be used with \fB-F\fP. They apply to each of the |
| 218 |
|
|
fixed strings. A line is selected if any of the fixed strings are found in it |
| 219 |
|
|
(subject to \fB-w\fP or \fB-x\fP, if present). |
| 220 |
nigel |
53 |
.TP |
| 221 |
nigel |
87 |
\fB-f\fP \fIfilename\fP, \fB--file=\fP\fIfilename\fP |
| 222 |
|
|
Read a number of patterns from the file, one per line, and match them against |
| 223 |
|
|
each line of input. A data line is output if any of the patterns match it. The |
| 224 |
|
|
filename can be given as "-" to refer to the standard input. When \fB-f\fP is |
| 225 |
|
|
used, patterns specified on the command line using \fB-e\fP may also be |
| 226 |
|
|
present; they are tested before the file's patterns. However, no other pattern |
| 227 |
|
|
is taken from the command line; all arguments are treated as file names. There |
| 228 |
|
|
is an overall maximum of 100 patterns. Trailing white space is removed from |
| 229 |
|
|
each line, and blank lines are ignored. An empty file contains no patterns and |
| 230 |
ph10 |
286 |
therefore matches nothing. See also the comments about multiple patterns versus |
| 231 |
ph10 |
281 |
a single pattern with alternatives in the description of \fB-e\fP above. |
| 232 |
nigel |
49 |
.TP |
| 233 |
ph10 |
280 |
\fB--file-offsets\fP |
| 234 |
|
|
Instead of showing lines or parts of lines that match, show each match as an |
| 235 |
|
|
offset from the start of the file and a length, separated by a comma. In this |
| 236 |
|
|
mode, no context is shown. That is, the \fB-A\fP, \fB-B\fP, and \fB-C\fP |
| 237 |
|
|
options are ignored. If there is more than one match in a line, each of them is |
| 238 |
|
|
shown separately. This option is mutually exclusive with \fB--line-offsets\fP |
| 239 |
|
|
and \fB--only-matching\fP. |
| 240 |
|
|
.TP |
| 241 |
nigel |
87 |
\fB-H\fP, \fB--with-filename\fP |
| 242 |
|
|
Force the inclusion of the filename at the start of output lines when searching |
| 243 |
|
|
a single file. By default, the filename is not shown in this case. For matching |
| 244 |
ph10 |
376 |
lines, the filename is followed by a colon; for context lines, a hyphen |
| 245 |
|
|
separator is used. If a line number is also being output, it follows the file |
| 246 |
|
|
name. |
| 247 |
nigel |
87 |
.TP |
| 248 |
|
|
\fB-h\fP, \fB--no-filename\fP |
| 249 |
|
|
Suppress the output filenames when searching multiple files. By default, |
| 250 |
|
|
filenames are shown when multiple files are searched. For matching lines, the |
| 251 |
ph10 |
376 |
filename is followed by a colon; for context lines, a hyphen separator is used. |
| 252 |
|
|
If a line number is also being output, it follows the file name. |
| 253 |
nigel |
87 |
.TP |
| 254 |
|
|
\fB--help\fP |
| 255 |
ph10 |
286 |
Output a help message, giving brief details of the command options and file |
| 256 |
|
|
type support, and then exit. |
| 257 |
nigel |
87 |
.TP |
| 258 |
|
|
\fB-i\fP, \fB--ignore-case\fP |
| 259 |
nigel |
49 |
Ignore upper/lower case distinctions during comparisons. |
| 260 |
|
|
.TP |
| 261 |
nigel |
77 |
\fB--include\fP=\fIpattern\fP |
| 262 |
|
|
When \fBpcregrep\fP is searching the files in a directory as a consequence of |
| 263 |
ph10 |
324 |
the \fB-r\fP (recursive search) option, only those regular files whose names |
| 264 |
ph10 |
325 |
match the pattern are included. Subdirectories are always included and searched |
| 265 |
ph10 |
571 |
recursively, subject to the \fP--include-dir\fP and \fB--exclude-dir\fP |
| 266 |
ph10 |
325 |
options. The pattern is a PCRE regular expression, and is matched against the |
| 267 |
|
|
final component of the file name (not the entire path). If a file name matches |
| 268 |
|
|
both \fB--include\fP and \fB--exclude\fP, it is excluded. There is no short |
| 269 |
|
|
form for this option. |
| 270 |
nigel |
77 |
.TP |
| 271 |
ph10 |
571 |
\fB--include-dir\fP=\fIpattern\fP |
| 272 |
ph10 |
325 |
When \fBpcregrep\fP is searching the contents of a directory as a consequence |
| 273 |
|
|
of the \fB-r\fP (recursive search) option, only those subdirectories whose |
| 274 |
|
|
names match the pattern are included. (Note that the \fB--include\fP option |
| 275 |
|
|
does not affect subdirectories.) The pattern is a PCRE regular expression, and |
| 276 |
|
|
is matched against the final component of the name (not the entire path). If a |
| 277 |
ph10 |
571 |
subdirectory name matches both \fB--include-dir\fP and \fB--exclude-dir\fP, it |
| 278 |
ph10 |
325 |
is excluded. There is no short form for this option. |
| 279 |
|
|
.TP |
| 280 |
nigel |
87 |
\fB-L\fP, \fB--files-without-match\fP |
| 281 |
|
|
Instead of outputting lines from the files, just output the names of the files |
| 282 |
|
|
that do not contain any lines that would have been output. Each file name is |
| 283 |
|
|
output once, on a separate line. |
| 284 |
nigel |
77 |
.TP |
| 285 |
nigel |
87 |
\fB-l\fP, \fB--files-with-matches\fP |
| 286 |
|
|
Instead of outputting lines from the files, just output the names of the files |
| 287 |
|
|
containing lines that would have been output. Each file name is output |
| 288 |
ph10 |
420 |
once, on a separate line. Searching normally stops as soon as a matching line |
| 289 |
ph10 |
461 |
is found in a file. However, if the \fB-c\fP (count) option is also used, |
| 290 |
|
|
matching continues in order to obtain the correct count, and those files that |
| 291 |
|
|
have at least one match are listed along with their counts. Using this option |
| 292 |
ph10 |
420 |
with \fB-c\fP is a way of suppressing the listing of files with no matches. |
| 293 |
nigel |
49 |
.TP |
| 294 |
nigel |
77 |
\fB--label\fP=\fIname\fP |
| 295 |
|
|
This option supplies a name to be used for the standard input when file names |
| 296 |
nigel |
87 |
are being output. If not supplied, "(standard input)" is used. There is no |
| 297 |
nigel |
77 |
short form for this option. |
| 298 |
|
|
.TP |
| 299 |
ph10 |
519 |
\fB--line-buffered\fP |
| 300 |
ph10 |
535 |
When this option is given, input is read and processed line by line, and the |
| 301 |
|
|
output is flushed after each write. By default, input is read in large chunks, |
| 302 |
|
|
unless \fBpcregrep\fP can determine that it is reading from a terminal (which |
| 303 |
|
|
is currently possible only in Unix environments). Output to terminal is |
| 304 |
|
|
normally automatically flushed by the operating system. This option can be |
| 305 |
|
|
useful when the input or output is attached to a pipe and you do not want |
| 306 |
|
|
\fBpcregrep\fP to buffer up large amounts of data. However, its use will affect |
| 307 |
ph10 |
519 |
performance, and the \fB-M\fP (multiline) option ceases to work. |
| 308 |
|
|
.TP |
| 309 |
ph10 |
280 |
\fB--line-offsets\fP |
| 310 |
ph10 |
286 |
Instead of showing lines or parts of lines that match, show each match as a |
| 311 |
|
|
line number, the offset from the start of the line, and a length. The line |
| 312 |
|
|
number is terminated by a colon (as usual; see the \fB-n\fP option), and the |
| 313 |
ph10 |
280 |
offset and length are separated by a comma. In this mode, no context is shown. |
| 314 |
|
|
That is, the \fB-A\fP, \fB-B\fP, and \fB-C\fP options are ignored. If there is |
| 315 |
|
|
more than one match in a line, each of them is shown separately. This option is |
| 316 |
|
|
mutually exclusive with \fB--file-offsets\fP and \fB--only-matching\fP. |
| 317 |
|
|
.TP |
| 318 |
nigel |
87 |
\fB--locale\fP=\fIlocale-name\fP |
| 319 |
|
|
This option specifies a locale to be used for pattern matching. It overrides |
| 320 |
|
|
the value in the \fBLC_ALL\fP or \fBLC_CTYPE\fP environment variables. If no |
| 321 |
|
|
locale is specified, the PCRE library's default (usually the "C" locale) is |
| 322 |
|
|
used. There is no short form for this option. |
| 323 |
|
|
.TP |
| 324 |
ph10 |
579 |
\fB--match-limit\fP=\fInumber\fP |
| 325 |
ph10 |
561 |
Processing some regular expression patterns can require a very large amount of |
| 326 |
|
|
memory, leading in some cases to a program crash if not enough is available. |
| 327 |
ph10 |
579 |
Other patterns may take a very long time to search for all possible matching |
| 328 |
ph10 |
561 |
strings. The \fBpcre_exec()\fP function that is called by \fBpcregrep\fP to do |
| 329 |
ph10 |
579 |
the matching has two parameters that can limit the resources that it uses. |
| 330 |
ph10 |
561 |
.sp |
| 331 |
|
|
The \fB--match-limit\fP option provides a means of limiting resource usage |
| 332 |
|
|
when processing patterns that are not going to match, but which have a very |
| 333 |
|
|
large number of possibilities in their search trees. The classic example is a |
| 334 |
|
|
pattern that uses nested unlimited repeats. Internally, PCRE uses a function |
| 335 |
|
|
called \fBmatch()\fP which it calls repeatedly (sometimes recursively). The |
| 336 |
ph10 |
583 |
limit set by \fB--match-limit\fP is imposed on the number of times this |
| 337 |
ph10 |
561 |
function is called during a match, which has the effect of limiting the amount |
| 338 |
|
|
of backtracking that can take place. |
| 339 |
|
|
.sp |
| 340 |
|
|
The \fB--recursion-limit\fP option is similar to \fB--match-limit\fP, but |
| 341 |
|
|
instead of limiting the total number of times that \fBmatch()\fP is called, it |
| 342 |
|
|
limits the depth of recursive calls, which in turn limits the amount of memory |
| 343 |
|
|
that can be used. The recursion depth is a smaller number than the total number |
| 344 |
|
|
of calls, because not all calls to \fBmatch()\fP are recursive. This limit is |
| 345 |
|
|
of use only if it is set smaller than \fB--match-limit\fP. |
| 346 |
|
|
.sp |
| 347 |
ph10 |
579 |
There are no short forms for these options. The default settings are specified |
| 348 |
ph10 |
561 |
when the PCRE library is compiled, with the default default being 10 million. |
| 349 |
|
|
.TP |
| 350 |
nigel |
87 |
\fB-M\fP, \fB--multiline\fP |
| 351 |
nigel |
77 |
Allow patterns to match more than one line. When this option is given, patterns |
| 352 |
|
|
may usefully contain literal newline characters and internal occurrences of ^ |
| 353 |
ph10 |
587 |
and $ characters. The output for a successful match may consist of more than |
| 354 |
ph10 |
589 |
one line, the last of which is the one in which the match ended. If the matched |
| 355 |
ph10 |
587 |
string ends with a newline sequence the output ends at the end of that line. |
| 356 |
|
|
.sp |
| 357 |
|
|
When this option is set, the PCRE library is called in "multiline" mode. |
| 358 |
nigel |
77 |
There is a limit to the number of lines that can be matched, imposed by the way |
| 359 |
|
|
that \fBpcregrep\fP buffers the input file as it scans it. However, |
| 360 |
|
|
\fBpcregrep\fP ensures that at least 8K characters or the rest of the document |
| 361 |
|
|
(whichever is the shorter) are available for forward matching, and similarly |
| 362 |
|
|
the previous 8K characters (or all the previous characters, if fewer than 8K) |
| 363 |
ph10 |
535 |
are guaranteed to be available for lookbehind assertions. This option does not |
| 364 |
ph10 |
519 |
work when input is read line by line (see \fP--line-buffered\fP.) |
| 365 |
nigel |
77 |
.TP |
| 366 |
ph10 |
565 |
\fB-N\fP \fInewline-type\fP, \fB--newline\fP=\fInewline-type\fP |
| 367 |
ph10 |
149 |
The PCRE library supports five different conventions for indicating |
| 368 |
nigel |
91 |
the ends of lines. They are the single-character sequences CR (carriage return) |
| 369 |
ph10 |
150 |
and LF (linefeed), the two-character sequence CRLF, an "anycrlf" convention, |
| 370 |
ph10 |
149 |
which recognizes any of the preceding three types, and an "any" convention, in |
| 371 |
nigel |
93 |
which any Unicode line ending sequence is assumed to end a line. The Unicode |
| 372 |
|
|
sequences are the three just mentioned, plus VT (vertical tab, U+000B), FF |
| 373 |
ph10 |
599 |
(form feed, U+000C), NEL (next line, U+0085), LS (line separator, U+2028), and |
| 374 |
ph10 |
149 |
PS (paragraph separator, U+2029). |
| 375 |
nigel |
93 |
.sp |
| 376 |
|
|
When the PCRE library is built, a default line-ending sequence is specified. |
| 377 |
|
|
This is normally the standard sequence for the operating system. Unless |
| 378 |
|
|
otherwise specified by this option, \fBpcregrep\fP uses the library's default. |
| 379 |
ph10 |
149 |
The possible values for this option are CR, LF, CRLF, ANYCRLF, or ANY. This |
| 380 |
|
|
makes it possible to use \fBpcregrep\fP on files that have come from other |
| 381 |
|
|
environments without having to modify their line endings. If the data that is |
| 382 |
|
|
being scanned does not agree with the convention set by this option, |
| 383 |
|
|
\fBpcregrep\fP may behave in strange ways. |
| 384 |
nigel |
91 |
.TP |
| 385 |
nigel |
87 |
\fB-n\fP, \fB--line-number\fP |
| 386 |
|
|
Precede each output line by its line number in the file, followed by a colon |
| 387 |
ph10 |
376 |
for matching lines or a hyphen for context lines. If the filename is also being |
| 388 |
|
|
output, it precedes the line number. This option is forced if |
| 389 |
|
|
\fB--line-offsets\fP is used. |
| 390 |
nigel |
49 |
.TP |
| 391 |
ph10 |
685 |
\fB--no-jit\fP |
| 392 |
|
|
If the PCRE library is built with support for just-in-time compiling (which |
| 393 |
|
|
speeds up matching), \fBpcregrep\fP automatically makes use of this, unless it |
| 394 |
|
|
was explicitly disabled at build time. This option can be used to disable the |
| 395 |
|
|
use of JIT at run time. It is provided for testing and working round problems. |
| 396 |
|
|
It should never be needed in normal use. |
| 397 |
|
|
.TP |
| 398 |
nigel |
87 |
\fB-o\fP, \fB--only-matching\fP |
| 399 |
ph10 |
565 |
Show only the part of the line that matched a pattern instead of the whole |
| 400 |
|
|
line. In this mode, no context is shown. That is, the \fB-A\fP, \fB-B\fP, and |
| 401 |
|
|
\fB-C\fP options are ignored. If there is more than one match in a line, each |
| 402 |
|
|
of them is shown separately. If \fB-o\fP is combined with \fB-v\fP (invert the |
| 403 |
|
|
sense of the match to find non-matching lines), no output is generated, but the |
| 404 |
|
|
return code is set appropriately. If the matched portion of the line is empty, |
| 405 |
|
|
nothing is output unless the file name or line number are being printed, in |
| 406 |
|
|
which case they are shown on an otherwise empty line. This option is mutually |
| 407 |
|
|
exclusive with \fB--file-offsets\fP and \fB--line-offsets\fP. |
| 408 |
nigel |
77 |
.TP |
| 409 |
ph10 |
565 |
\fB-o\fP\fInumber\fP, \fB--only-matching\fP=\fInumber\fP |
| 410 |
ph10 |
579 |
Show only the part of the line that matched the capturing parentheses of the |
| 411 |
ph10 |
565 |
given number. Up to 32 capturing parentheses are supported. Because these |
| 412 |
|
|
options can be given without an argument (see above), if an argument is |
| 413 |
|
|
present, it must be given in the same shell item, for example, -o3 or |
| 414 |
ph10 |
579 |
--only-matching=2. The comments given for the non-argument case above also |
| 415 |
|
|
apply to this case. If the specified capturing parentheses do not exist in the |
| 416 |
|
|
pattern, or were not set in the match, nothing is output unless the file name |
| 417 |
ph10 |
565 |
or line number are being printed. |
| 418 |
|
|
.TP |
| 419 |
nigel |
87 |
\fB-q\fP, \fB--quiet\fP |
| 420 |
|
|
Work quietly, that is, display nothing except error messages. The exit |
| 421 |
|
|
status indicates whether or not any matches were found. |
| 422 |
|
|
.TP |
| 423 |
|
|
\fB-r\fP, \fB--recursive\fP |
| 424 |
nigel |
77 |
If any given path is a directory, recursively scan the files it contains, |
| 425 |
nigel |
87 |
taking note of any \fB--include\fP and \fB--exclude\fP settings. By default, a |
| 426 |
|
|
directory is read as a normal file; in some operating systems this gives an |
| 427 |
|
|
immediate end-of-file. This option is a shorthand for setting the \fB-d\fP |
| 428 |
|
|
option to "recurse". |
| 429 |
nigel |
53 |
.TP |
| 430 |
ph10 |
561 |
\fB--recursion-limit\fP=\fInumber\fP |
| 431 |
|
|
See \fB--match-limit\fP above. |
| 432 |
|
|
.TP |
| 433 |
nigel |
87 |
\fB-s\fP, \fB--no-messages\fP |
| 434 |
nigel |
77 |
Suppress error messages about non-existent or unreadable files. Such files are |
| 435 |
|
|
quietly skipped. However, the return code is still 2, even if matches were |
| 436 |
|
|
found in other files. |
| 437 |
nigel |
49 |
.TP |
| 438 |
nigel |
87 |
\fB-u\fP, \fB--utf-8\fP |
| 439 |
nigel |
63 |
Operate in UTF-8 mode. This option is available only if PCRE has been compiled |
| 440 |
nigel |
87 |
with UTF-8 support. Both patterns and subject lines must be valid strings of |
| 441 |
|
|
UTF-8 characters. |
| 442 |
nigel |
63 |
.TP |
| 443 |
nigel |
87 |
\fB-V\fP, \fB--version\fP |
| 444 |
nigel |
77 |
Write the version numbers of \fBpcregrep\fP and the PCRE library that is being |
| 445 |
|
|
used to the standard error stream. |
| 446 |
|
|
.TP |
| 447 |
nigel |
87 |
\fB-v\fP, \fB--invert-match\fP |
| 448 |
|
|
Invert the sense of the match, so that lines which do \fInot\fP match any of |
| 449 |
|
|
the patterns are the ones that are found. |
| 450 |
nigel |
49 |
.TP |
| 451 |
nigel |
87 |
\fB-w\fP, \fB--word-regex\fP, \fB--word-regexp\fP |
| 452 |
|
|
Force the patterns to match only whole words. This is equivalent to having \eb |
| 453 |
nigel |
77 |
at the start and end of the pattern. |
| 454 |
|
|
.TP |
| 455 |
ph10 |
148 |
\fB-x\fP, \fB--line-regex\fP, \fB--line-regexp\fP |
| 456 |
nigel |
87 |
Force the patterns to be anchored (each must start matching at the beginning of |
| 457 |
|
|
a line) and in addition, require them to match entire lines. This is |
| 458 |
nigel |
49 |
equivalent to having ^ and $ characters at the start and end of each |
| 459 |
nigel |
87 |
alternative branch in every pattern. |
| 460 |
nigel |
75 |
. |
| 461 |
nigel |
87 |
. |
| 462 |
|
|
.SH "ENVIRONMENT VARIABLES" |
| 463 |
nigel |
63 |
.rs |
| 464 |
|
|
.sp |
| 465 |
nigel |
87 |
The environment variables \fBLC_ALL\fP and \fBLC_CTYPE\fP are examined, in that |
| 466 |
|
|
order, for a locale. The first one that is set is used. This can be overridden |
| 467 |
|
|
by the \fB--locale\fP option. If no locale is set, the PCRE library's default |
| 468 |
|
|
(usually the "C" locale) is used. |
| 469 |
|
|
. |
| 470 |
|
|
. |
| 471 |
nigel |
91 |
.SH "NEWLINES" |
| 472 |
|
|
.rs |
| 473 |
|
|
.sp |
| 474 |
|
|
The \fB-N\fP (\fB--newline\fP) option allows \fBpcregrep\fP to scan files with |
| 475 |
|
|
different newline conventions from the default. However, the setting of this |
| 476 |
|
|
option does not affect the way in which \fBpcregrep\fP writes information to |
| 477 |
|
|
the standard error and output streams. It uses the string "\en" in C |
| 478 |
|
|
\fBprintf()\fP calls to indicate newlines, relying on the C I/O library to |
| 479 |
|
|
convert this to an appropriate sequence if the output is sent to a file. |
| 480 |
|
|
. |
| 481 |
|
|
. |
| 482 |
nigel |
87 |
.SH "OPTIONS COMPATIBILITY" |
| 483 |
|
|
.rs |
| 484 |
nigel |
75 |
.sp |
| 485 |
ph10 |
571 |
Many of the short and long forms of \fBpcregrep\fP's options are the same |
| 486 |
|
|
as in the GNU \fBgrep\fP program (version 2.5.4). Any long option of the form |
| 487 |
nigel |
87 |
\fB--xxx-regexp\fP (GNU terminology) is also available as \fB--xxx-regex\fP |
| 488 |
ph10 |
571 |
(PCRE terminology). However, the \fB--file-offsets\fP, \fB--include-dir\fP, |
| 489 |
|
|
\fB--line-offsets\fP, \fB--locale\fP, \fB--match-limit\fP, \fB-M\fP, |
| 490 |
|
|
\fB--multiline\fP, \fB-N\fP, \fB--newline\fP, \fB--recursion-limit\fP, |
| 491 |
|
|
\fB-u\fP, and \fB--utf-8\fP options are specific to \fBpcregrep\fP, as is the |
| 492 |
|
|
use of the \fB--only-matching\fP option with a capturing parentheses number. |
| 493 |
|
|
.P |
| 494 |
|
|
Although most of the common options work the same way, a few are different in |
| 495 |
|
|
\fBpcregrep\fP. For example, the \fB--include\fP option's argument is a glob |
| 496 |
|
|
for GNU \fBgrep\fP, but a regular expression for \fBpcregrep\fP. If both the |
| 497 |
ph10 |
461 |
\fB-c\fP and \fB-l\fP options are given, GNU grep lists only file names, |
| 498 |
ph10 |
420 |
without counts, but \fBpcregrep\fP gives the counts. |
| 499 |
nigel |
77 |
. |
| 500 |
nigel |
87 |
. |
| 501 |
nigel |
77 |
.SH "OPTIONS WITH DATA" |
| 502 |
|
|
.rs |
| 503 |
nigel |
75 |
.sp |
| 504 |
nigel |
77 |
There are four different ways in which an option with data can be specified. |
| 505 |
ph10 |
571 |
If a short form option is used, the data may follow immediately, or (with one |
| 506 |
|
|
exception) in the next command line item. For example: |
| 507 |
nigel |
77 |
.sp |
| 508 |
|
|
-f/some/file |
| 509 |
|
|
-f /some/file |
| 510 |
|
|
.sp |
| 511 |
ph10 |
579 |
The exception is the \fB-o\fP option, which may appear with or without data. |
| 512 |
|
|
Because of this, if data is present, it must follow immediately in the same |
| 513 |
ph10 |
571 |
item, for example -o3. |
| 514 |
|
|
.P |
| 515 |
nigel |
77 |
If a long form option is used, the data may appear in the same command line |
| 516 |
ph10 |
571 |
item, separated by an equals character, or (with two exceptions) it may appear |
| 517 |
nigel |
87 |
in the next command line item. For example: |
| 518 |
nigel |
77 |
.sp |
| 519 |
|
|
--file=/some/file |
| 520 |
|
|
--file /some/file |
| 521 |
|
|
.sp |
| 522 |
nigel |
87 |
Note, however, that if you want to supply a file name beginning with ~ as data |
| 523 |
|
|
in a shell command, and have the shell expand ~ to a home directory, you must |
| 524 |
|
|
separate the file name from the option, because the shell does not treat ~ |
| 525 |
|
|
specially unless it is at the start of an item. |
| 526 |
|
|
.P |
| 527 |
ph10 |
571 |
The exceptions to the above are the \fB--colour\fP (or \fB--color\fP) and |
| 528 |
|
|
\fB--only-matching\fP options, for which the data is optional. If one of these |
| 529 |
|
|
options does have data, it must be given in the first form, using an equals |
| 530 |
ph10 |
579 |
character. Otherwise \fBpcregrep\fP will assume that it has no data. |
| 531 |
nigel |
75 |
. |
| 532 |
nigel |
87 |
. |
| 533 |
nigel |
93 |
.SH "MATCHING ERRORS" |
| 534 |
nigel |
87 |
.rs |
| 535 |
|
|
.sp |
| 536 |
|
|
It is possible to supply a regular expression that takes a very long time to |
| 537 |
|
|
fail to match certain lines. Such patterns normally involve nested indefinite |
| 538 |
|
|
repeats, for example: (a+)*\ed when matched against a line of a's with no final |
| 539 |
|
|
digit. The PCRE matching function has a resource limit that causes it to abort |
| 540 |
|
|
in these circumstances. If this happens, \fBpcregrep\fP outputs an error |
| 541 |
|
|
message and the line that caused the problem to the standard error stream. If |
| 542 |
|
|
there are more than 20 such errors, \fBpcregrep\fP gives up. |
| 543 |
ph10 |
571 |
.P |
| 544 |
|
|
The \fB--match-limit\fP option of \fBpcregrep\fP can be used to set the overall |
| 545 |
|
|
resource limit; there is a second option called \fB--recursion-limit\fP that |
| 546 |
ph10 |
579 |
sets a limit on the amount of memory (usually stack) that is used (see the |
| 547 |
ph10 |
571 |
discussion of these options above). |
| 548 |
nigel |
87 |
. |
| 549 |
|
|
. |
| 550 |
nigel |
49 |
.SH DIAGNOSTICS |
| 551 |
nigel |
63 |
.rs |
| 552 |
|
|
.sp |
| 553 |
nigel |
49 |
Exit status is 0 if any matches were found, 1 if no matches were found, and 2 |
| 554 |
ph10 |
644 |
for syntax errors, overlong lines, non-existent or inaccessible files (even if |
| 555 |
|
|
matches were found in other files) or too many matching errors. Using the |
| 556 |
|
|
\fB-s\fP option to suppress error messages about inaccessible files does not |
| 557 |
|
|
affect the return code. |
| 558 |
nigel |
75 |
. |
| 559 |
|
|
. |
| 560 |
nigel |
93 |
.SH "SEE ALSO" |
| 561 |
|
|
.rs |
| 562 |
|
|
.sp |
| 563 |
|
|
\fBpcrepattern\fP(3), \fBpcretest\fP(1). |
| 564 |
|
|
. |
| 565 |
|
|
. |
| 566 |
nigel |
49 |
.SH AUTHOR |
| 567 |
nigel |
63 |
.rs |
| 568 |
|
|
.sp |
| 569 |
ph10 |
99 |
.nf |
| 570 |
nigel |
77 |
Philip Hazel |
| 571 |
nigel |
63 |
University Computing Service |
| 572 |
nigel |
93 |
Cambridge CB2 3QH, England. |
| 573 |
ph10 |
99 |
.fi |
| 574 |
|
|
. |
| 575 |
|
|
. |
| 576 |
|
|
.SH REVISION |
| 577 |
|
|
.rs |
| 578 |
|
|
.sp |
| 579 |
|
|
.nf |
| 580 |
ph10 |
685 |
Last updated: 06 September 2011 |
| 581 |
ph10 |
587 |
Copyright (c) 1997-2011 University of Cambridge. |
| 582 |
ph10 |
99 |
.fi |