#!/bin/sh
for y in `ls *.html`;
do sed "s~http://library.monash.edu.au/cgi-bin/Pwebrecon.cgi?DB=local&BBID=~http://library.monash.edu.au//vwebv/holdingsInfo?bibId=~g" $y > temp;
mv temp $y;
done


