for i in `find . -name '*.html' -print` ;
do
sed s,http://java.sun.com/products/jdk/1.1,$1,g $i >/tmp/tut
mv -f /tmp/tut $i
done
