mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-13 00:24:29 +00:00
7 lines
102 B
Text
7 lines
102 B
Text
|
#!/bin/sh
|
||
|
for i in *.h; do
|
||
|
sed -e "s/BasePath/EnginePath/" $i > $i.tmp
|
||
|
mv -f $i.tmp $i
|
||
|
done
|
||
|
|