You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
321 B
6 lines
321 B
9 years ago
|
f="effects.h *.cpp"
|
||
|
for m in SetThink SetTouch SetUse SetBlocked SetMoveDone; do
|
||
|
m2=`echo $m|sed -e s/Set/Reset/`
|
||
|
sed -e s/$m[[:space:]]\*\([[:space:]]\*/$m\(/g -e s/$m\([[:space:]]\*\\\&/$m\(/g -e s/$m\([[:space:]]\*NULL[[:space:]]\)/$m2\(\)/g -e s/$m\([[:space:]]*/$m\(\ \\\&/g -e s/$m2\(\)/$m\(\ NULL\ \)/g -i $f
|
||
|
done
|