Home | History | Annotate | Line # | Download | only in tools
      1 #!/bin/csh -f
      2 #	$NetBSD: Do_troff,v 1.2 1995/03/23 08:28:52 cgd Exp $
      3 #
      4 #	@(#)Do_troff	8.1 (Berkeley) 5/31/93
      5 #
      6 
      7 set file=$1
      8 shift
      9 ( echo ".ds Se $file" ; cat Troff.mac ; sed -f Troff.sed $file ) | \
     10 	$* -me >& $file.tr
     11 echo troff output in $file.tr
     12