Mass Change content in all files

Hi,

Are there any sample scripts to change content like file paths, profile paths etc., from test version to production , instead of changing one by one, i would like to pass the in file (prod version/Test version) to convert to test or prod verions.

any help is appreciated!!

~R

A little example would be helpful, and I'm sure there are sample scripts, but you can use my little sample here at no charge:
for file in test/* ; do
shortname=`basename $file`
sed -e "s#^TESTPATH1=#PRODUCTIONPATH=/path/to/prod/$shortname#" -e "s#^TESTVAR=50#PRODVAR=60#" -e "s#^YETMORE#REPLACEMENT#" $file > /path/to/prod/$shortname
done

Based on your abbreviated message, I'm not sure if that's close to what you want but it's a shot nevertheless...
-Mike