aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-08-08 10:37:28 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-08-08 10:37:28 +1200
commit9bd9b909e3946da58d98a381ad09a6ac2015f9a9 (patch)
treec2139ce956000f300713a18204a4d638008e70d2 /bin
parentRemove two more POSIX character classes (diff)
downloaddotfiles-9bd9b909e3946da58d98a381ad09a6ac2015f9a9.tar.gz
dotfiles-9bd9b909e3946da58d98a381ad09a6ac2015f9a9.zip
Correct previous commit
Forgot to remove the square brackets
Diffstat (limited to 'bin')
-rw-r--r--bin/mw.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mw.awk b/bin/mw.awk
index c2565cf3..8af28312 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 = "(--|['_-]*[^[a-zA-Z0-9_]'_-]+['_-]*)"
+ FS = "(--|['_-]*[^a-zA-Z0-9_'_-]+['_-]*)"
}
{
for (i = 1; i <= NF; i++)