4 |
|
|
5 |
/* This is a grep program that uses the PCRE regular expression library to do |
/* This is a grep program that uses the PCRE regular expression library to do |
6 |
its pattern matching. On Unix-like, Windows, and native z/OS systems it can |
its pattern matching. On Unix-like, Windows, and native z/OS systems it can |
7 |
recurse into directories, and in z/OS it can handle PDS files. |
recurse into directories, and in z/OS it can handle PDS files. |
8 |
|
|
9 |
Note that for native z/OS, in addition to defining the NATIVE_ZOS macro, an |
Note that for native z/OS, in addition to defining the NATIVE_ZOS macro, an |
10 |
additional header is required. That header is not included in the main PCRE |
additional header is required. That header is not included in the main PCRE |
2142 |
|
|
2143 |
if (zos_test_file == NULL) |
if (zos_test_file == NULL) |
2144 |
{ |
{ |
2145 |
if (!silent) fprintf(stderr, "pcregrep: failed to test next file %s\n", |
if (!silent) fprintf(stderr, "pcregrep: failed to test next file %s\n", |
2146 |
pathname, strerror(errno)); |
pathname, strerror(errno)); |
2147 |
return -1; |
return -1; |
2148 |
} |
} |