/[pcre]/code/trunk/doc/pcregrep.txt
ViewVC logotype

Contents of /code/trunk/doc/pcregrep.txt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 429 - (hide annotations) (download)
Tue Sep 1 16:10:16 2009 UTC (3 years, 8 months ago) by ph10
File MIME type: text/plain
File size: 28859 byte(s)
Add pcredemo man page, containing a listing of pcredemo.c.

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

Properties

Name Value
svn:eol-style native
svn:keywords "Author Date Id Revision Url"

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12