freebsd-dev/contrib/groff/eqn/neqn.sh
Andrey A. Chernov a26aa2519f Fix -T doubling
1999-06-07 19:28:47 +00:00

21 lines
442 B
Bash

#!/bin/sh
# Provision of this shell script should not be taken to imply that use of
# GNU eqn with groff -Tascii|-Tlatin1 is supported.
# Default device.
if test `expr "$LC_CTYPE" : ".*\.ISO_8859-1"` -gt 0 || \
test `expr "$LANG" : ".*\.ISO_8859-1"` -gt 0
then
T=latin1
else
if test `expr "$LC_CTYPE" : ".*\.KOI8-R"` -gt 0 || \
test `expr "$LANG" : ".*\.KOI8-R"` -gt 0
then
T=koi8-r
else
T=ascii
fi
fi
exec @g@eqn -T${T} ${1+"$@"}