#BASH arrays (NOT set -A):
#!/bin/bash
declare -a doh=(one two three)
echo ${doh[${#doh[*]}-1]}   #last field
echo ${doh[0]}		#field one
echo ${doh[1]}		#field two
echo ${doh[*]}		#All fields

#typset -i in HPUX is declare -i
#(declares variable as integer)

#The -rW and -rL don't work with -mm ??
nroff -T$TERM -u1 -rO0 `manprog $1` -rC3 -mm  $TMMACRO/mmdoc $TMMACRO/custom $1
