Posted in Command Line, Linux Convert all Ico files to Gif Binny V A March 17, 2008 Leave a Comment on 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 Author: Binny V AA philosopher programmer who specializes in backend development and stoicism.