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