:
#ident	"@(#)/usr/local/lprettyman 1.0 11/14/89" Author: Milton Turner
# Office: HQ ATC/SCDAA, Randolph AFB, Texas 78150
# Phone: AV 487-UNIX (8649)  Comm: (512) 652-UNIX (8649)
#
#help# This makes a document version of the man output and sends to laser
#help# of a file in the current directory (must have lman to run this)
:
while :
  do
	echo "What manual on command do you wish to troff (PRETTY) ? \c:"
	read command
  	   if [ "$command" = "" ]
	      then 
	   echo "\nYou must give a filename"
	      else

lman -troff $command | ditplus -doasys | lp -dlaser1 -onobanner & # on laserpro

#lman -troff $command | ditplus -doki | lp -dPTRNAME  # oki laserline 24
	      break
	   fi
done
# SEE MMT in /usr/bin for more
