mud++0.26/etc/
mud++0.26/etc/guilds/
mud++0.26/log/
mud++0.26/mudC/
mud++0.26/player/
mud++0.26/src/unix/
# !/bin/sh
# Do global replacement of string in all source code files.
# I use this all the time, but I advise you to be careful
# -Fusion
for file in *.cc *.h 
do
sed -e "s/$1/$2/g" $file > ${file}.temp
mv ${file}.temp $file
done