aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDmitry Mikhirev2014-11-27 20:13:15 +0300
committerDmitry Mikhirev2014-11-27 20:13:15 +0300
commit2dac8d16aaf4041411249d3d52c4a9af259687de (patch)
tree0d2f99ffce8e4aacaa41850ee594e4f3d33a38ed /README.md
parentb2bb204fa2146d7606aa62cf138315d487206289 (diff)
downloadmake_pcre-2dac8d16aaf4041411249d3d52c4a9af259687de.tar.gz
make_pcre-2dac8d16aaf4041411249d3d52c4a9af259687de.tar.bz2
make_pcre-2dac8d16aaf4041411249d3d52c4a9af259687de.tar.xz
make_pcre-2dac8d16aaf4041411249d3d52c4a9af259687de.zip
added global search option
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 365b677..cedd3a4 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ in source directory. Optionally, type
$ make -k check
-to run self-tests.
+to run self-tests. Please report me if it fails on your system.
Install
-------
@@ -86,6 +86,8 @@ The following options are implemented:
- `E` enables expansion of pattern before compilation. Note that you will need
to use `$$` instead `$` for matching end of line in this case;
+- `g` enables global search, like in Perl. Space separated list of all matched
+ substrings will be returned;
- `i` makes search case insensitive. The same as in Perl;
- `m` makes regexp treating string as multi-line, i. e. `^` and `$` will match
immediately after or immediately before internal newlines. The same