80d971a7ab
[SVN r11900]
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
|