From 2cda3937b6e8cd333e4a4388553a17339fce82ac Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Fri, 16 Oct 2020 11:18:51 +0200 Subject: README: fix unescaped character in regex in awk in filter example Found by testing using mawk. --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 693af00..d2b7400 100644 --- 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); } -- cgit v1.2.3