Archive for March 17th, 2008

Convert all Ico files to Gif

I had a collection of ico files with the ext gif - these are the commands I used to fix the situation…


rename .gif .ico *.gif
find . -name '*.ico' -exec convert "{}" "{}.gif" \;
OR
mogrify -format gif *.ico
rm -f *.ico