mirror of
https://github.com/opnsense/src.git
synced 2026-04-11 20:40:03 -04:00
11 lines
194 B
Text
11 lines
194 B
Text
|
|
#!/bin/csh -f
|
||
|
|
#
|
||
|
|
# @(#)Do_troff 8.1 (Berkeley) 5/31/93
|
||
|
|
#
|
||
|
|
|
||
|
|
set file=$1
|
||
|
|
shift
|
||
|
|
( echo ".ds Se $file" ; cat Troff.mac ; sed -f Troff.sed $file ) | \
|
||
|
|
$* -me >& $file.tr
|
||
|
|
echo troff output in $file.tr
|