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
Byte sized tech know-how.
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
Copyright © 2024 Txt