wesnoth/utils/png-profile-clean.sh
Josef Redinger b0df981c46 add script for removing profile key...
and clean png files from comments and profiles
2006-09-27 14:28:53 +00:00

6 lines
222 B
Bash
Executable file

grep -ir profile ../images/| grep -v .svn | cut -f3 -d ' '> /tmp/wesnoth-profile-clean
while read x; do
convert -strip $x $x;
done < /tmp/wesnoth-profile-clean
cat /tmp/wesnoth-profile-clean
rm /tmp/wesnoth-profile-clean