Convent Ico to Gif
Tagged with: awk, convert, favicon, ico, icon, mogrify
This will convert all the ico files in the folder to gif. It uses the final frame of the ico file to create the gif.
for i in *.ico; do convert `mogrify -identify $i|awk '{print $1}'|tail -n1` $i.gif; done