summaryrefslogtreecommitdiffstats
path: root/contrib/groff/src/preproc/eqn/neqn.sh
blob: 1ae98e8fa8b8de745e6a19fcade438268033e17a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# Provision of this shell script should not be taken to imply that use of
# GNU eqn with groff -Tascii|-Tlatin1|-Tutf8|-Tcp1047 is supported.
# $FreeBSD$

# Default device.
locale=${LC_CTYPE:-$LANG}
if test `expr "$locale" : ".*\.ISO_8859-1"` -gt 0
then
	T=latin1
else
if test `expr "$locale" : ".*\.KOI8-R"` -gt 0
then
	T=koi8-r
else
	T=ascii
fi
fi

exec @g@eqn -T${T} ${1+"$@"}
OpenPOWER on IntegriCloud