Search and Replace (and destroy!) for file in *.*; do sed 's/Procedures.html/Procedures.php/g' $file > tmp.$file; [ -s tmp.$file ] && mv tmp.$file $file; done
Or superior:
find ./ -type f -exec sed -i ’s/string1/string2/’ {} \;
Wednesday, October 24, 2007
Subscribe to:
Posts (Atom)