mirror of
https://github.com/boostorg/graph.git
synced 2025-05-09 23:14:00 +00:00
9 lines
158 B
Tcsh
Executable File
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
|