ran this to update some files on the new hosting and i wanna save it for next time i have to do search and replace on a bunch of files:
for fl in `find . -name "*.php" -exec grep -l "/home/club409" {} \;`; do
mv $fl $fl.old
sed 's/home\/club409/home\/club9com/g' $fl.old > $fl
done
and apparently i can do it in perl with
one line but I like sed :)