freebsd-dev/contrib/groff/nroff/nroff.sh

69 lines
991 B
Bash
Raw Normal View History

1996-09-07 16:18:32 +00:00
#!/bin/sh
# Emulate nroff with groff.
# $FreeBSD$
1996-09-07 16:18:32 +00:00
prog="$0"
# Default device.
locale=${LC_CTYPE:-$LANG}
if test `expr "$locale" : ".*\.ISO_8859-1"` -gt 0
1996-09-07 16:18:32 +00:00
then
T=-Tlatin1
else
if test `expr "$locale" : ".*\.KOI8-R"` -gt 0
then
T=-Tkoi8-r
1996-09-07 16:18:32 +00:00
else
T=-Tascii
fi
fi
1996-09-07 16:18:32 +00:00
opts=
for i
do
case $1 in
-h)
opts="$opts -P-h"
;;
-[eq]|-s*)
# ignore these options
;;
-[mrnoT])
echo "$prog: option $1 requires an argument" >&2
exit 1
;;
-[iStp]|-[mrno]*)
1996-09-07 16:18:32 +00:00
opts="$opts $1";
;;
-Tascii|-Tlatin1|-Tkoi8-r)
1996-09-07 16:18:32 +00:00
T=$1
;;
-T*)
# ignore other devices
;;
-u*)
# Solaris 2.2 `man' uses -u0; ignore it,
# since `less' and `more' can use the emboldening info.
;;
--)
shift
break
;;
-)
break
;;
-*)
echo "$prog: invalid option $1" >&2
exit 1
;;
*)
break
;;
esac
shift
done
# This shell script is intended for use with man, so warnings are
# probably not wanted. Also load nroff-style character definitions.
exec groff -S -Wall -mtty-char $T $opts ${1+"$@"}