mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 08:12:27 -04:00
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
7 lines
152 B
Tcsh
7 lines
152 B
Tcsh
#!/bin/csh -f
|
|
|
|
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
|