blob: d77d853d509042ab35591ccfa3da114810d048bb (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/csh
foreach f (*.c *.h mpfr.texi FAQ.html TODO)
sed "s/$1/$2/g" $f > /tmp/$f
mv /tmp/$f $f
end
cd tests
foreach f (*.c *.h)
sed "s/$1/$2/g" $f > /tmp/$f
mv /tmp/$f $f
end
|