diff options
Diffstat (limited to 'etc/gspell')
-rwxr-xr-x | etc/gspell | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/etc/gspell b/etc/gspell new file mode 100755 index 0000000..e931f3c --- /dev/null +++ b/etc/gspell @@ -0,0 +1,18 @@ +#!/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 }' +s=$? +rm $f +rm $g 2>/dev/null +exit $s |