aboutsummaryrefslogtreecommitdiff
path: root/gspell
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-06-18 22:28:11 +0200
committerJohn Ankarström <john@ankarstrom.se>2021-06-18 22:28:11 +0200
commit94b6dc4d4d842cab6e6e96da5a407286d68d749a (patch)
tree0bb673a1216c3e96a64922f5e53d1ba5660d2eb9 /gspell
parentf67c55eac8fb721c1c892449c22b965a130caff4 (diff)
downloadxutil-94b6dc4d4d842cab6e6e96da5a407286d68d749a.tar.gz
Add 'gspell' utility
Diffstat (limited to 'gspell')
-rwxr-xr-xgspell16
1 files changed, 16 insertions, 0 deletions
diff --git a/gspell b/gspell
new file mode 100755
index 0000000..5edb8e4
--- /dev/null
+++ b/gspell
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+# gspell -- print locations of spelling errors in file
+
+f=`mktemp`
+if [ $# -eq 0 ]; then
+ g=`mktemp`
+ cat > $g
+ set -- $g
+fi
+
+spell "$@" > $f
+fgrep -Hnof $f "$@" |
+awk -F: 'NF > 2 { print $0; prefix = $1 ":" $2 ":"; next } { print prefix $0 }'
+rm $f
+rm $g 2>/dev/null