diff options
author | John Ankarström <john@ankarstrom.se> | 2021-06-18 22:28:11 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-06-18 22:28:11 +0200 |
commit | 94b6dc4d4d842cab6e6e96da5a407286d68d749a (patch) | |
tree | 0bb673a1216c3e96a64922f5e53d1ba5660d2eb9 | |
parent | f67c55eac8fb721c1c892449c22b965a130caff4 (diff) | |
download | xutil-94b6dc4d4d842cab6e6e96da5a407286d68d749a.tar.gz |
Add 'gspell' utility
-rwxr-xr-x | gspell | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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 |