Files
boost/libs/graph/doc/mungeaux.csh
2018-01-12 21:47:58 +01: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