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.
9 lines
297 B
9 lines
297 B
14 years ago
|
#! /bin/sh
|
||
|
|
||
|
for f in "$@" ; do
|
||
|
sed -i.before-color-change 's,\(MATERIAL.*\)rgb\(.*\)amb\(.*\)emis\(.*\)spec\(.*\)shi\(.*\)trans\(.*\)$,\1rgb\2amb\2emis\4spec\5shi\6trans\7,1' "$f"
|
||
|
if ! cmp "${f}" "${f}.before-color-change" > /dev/null 2>&1 ; then
|
||
|
echo "$f has changed colors!"
|
||
|
fi
|
||
|
done
|