2002-02-21 14:18:46 +00:00
|
|
|
#! /bin/sh
|
2002-08-24 17:39:07 +00:00
|
|
|
# *** External Spell Checker for GNU Midnight Commander.
|
2001-07-31 22:13:55 +00:00
|
|
|
# arguments:
|
2002-08-24 17:39:07 +00:00
|
|
|
# $1 - Name of the file being edited
|
|
|
|
# $2 - Name of the file to be processed
|
2001-07-31 22:13:55 +00:00
|
|
|
|
2001-09-20 01:13:29 +00:00
|
|
|
if aspell </dev/null >/dev/null 2>&1; then
|
2002-08-24 17:39:07 +00:00
|
|
|
aspell -c "$2"
|
2001-09-20 01:13:29 +00:00
|
|
|
else
|
2002-08-24 17:39:07 +00:00
|
|
|
ispell "$2"
|
2001-09-20 01:13:29 +00:00
|
|
|
fi
|