aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/mw.awk2
-rw-r--r--bin/rfct.awk3
2 files changed, 1 insertions, 4 deletions
diff --git a/bin/mw.awk b/bin/mw.awk
index 95d70c32..c2565cf3 100644
--- a/bin/mw.awk
+++ b/bin/mw.awk
@@ -1,7 +1,7 @@
# Crude approach to get alphabetic words one per line from input, not sorted or
# deduplicated
BEGIN {
- FS = "(--|['_-]*[^[:alnum:]'_-]+['_-]*)"
+ FS = "(--|['_-]*[^[a-zA-Z0-9_]'_-]+['_-]*)"
}
{
for (i = 1; i <= NF; i++)
diff --git a/bin/rfct.awk b/bin/rfct.awk
index 4467f206..90cd8e0d 100644
--- a/bin/rfct.awk
+++ b/bin/rfct.awk
@@ -6,8 +6,5 @@ BEGIN {
ORS = "\n\n"
}
-# Strip out control characters, except tab and newline
-{ gsub(/[^[:print:]\n\t]/, "") }
-
# If there's anything left, print it
length($0)