#!/bin/bash
for arg
{
	arg2="${arg%\.gif}.png"
	convert $arg $arg2
	echo "$arg -> $arg2"
}
