From a10efcfd61aa5e0e0d7730fb4beb5f87aa567510 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 2 Jan 2017 20:04:36 +1300 Subject: Change 0x0c in rfct(1df) regex to literal ^L --- bin/rfct.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/rfct.awk b/bin/rfct.awk index 2f0cc42d..ac8a2a87 100644 --- a/bin/rfct.awk +++ b/bin/rfct.awk @@ -4,5 +4,5 @@ BEGIN { RS = "" } # Print the block followed by two newlines, as long as it has at least one -# alphanumeric character and no pagebreak characters -/[a-zA-Z0-9]/ && !/\x0c/ { printf "%s\n\n", $0 } +# alphanumeric character and no pagebreak (^L, 0x0C) characters +/[a-zA-Z0-9]/ && !/ / { printf "%s\n\n", $0 } -- cgit v1.2.3