2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-19 04:12:11 +00:00
Files
graph/doc/mungeaux.csh
Jeremy Siek 80d971a7ab new file
[SVN r11900]
2001-12-04 01:29:42 +00:00

9 lines
158 B
Tcsh
Executable File

#!/bin/csh -f
foreach aux ( $* )
echo Munging $aux
/bin/mv $aux $aux.bak
cat $aux.bak | perl jwebfrob.pl > $aux
/bin/cp $aux $aux.munged
end