commit 2cda3937b6e8cd333e4a4388553a17339fce82ac
parent 65df3f2e9a3961541ac33f1a147d373f814aedf9
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Fri, 16 Oct 2020 11:18:51 +0200
README: fix unescaped character in regex in awk in filter example
Found by testing using mawk.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README b/README
@@ -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);
}