7 lines
103 B
Tcsh
7 lines
103 B
Tcsh
#!/bin/csh
|
|
|
|
foreach file ( */*.rst )
|
|
sed -f sedscript.txt $file > $file.tmp
|
|
mv $file.tmp $file
|
|
end
|