diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-10-16 11:18:51 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-10-16 11:18:51 +0200 |
commit | 2cda3937b6e8cd333e4a4388553a17339fce82ac (patch) | |
tree | b54d0b5af534cc4ebc869f1c06506026befcd936 | |
parent | 65df3f2e9a3961541ac33f1a147d373f814aedf9 (diff) |
README: fix unescaped character in regex in awk in filter example
Found by testing using mawk.
-rw-r--r-- | README | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -289,7 +289,7 @@ advertisements, strip tracking parameters and more. } # shorten feedburner links. - if (match(s, /^(http|https):\/\/[^/]+\/~r\/.*\/~3\/[^\/]+\//)) { + if (match(s, /^(http|https):\/\/[^\/]+\/~r\/.*\/~3\/[^\/]+\//)) { s = substr($3, RSTART, RLENGTH); } |