for file in *.jpg; do convert $file ${file/jpg/png} done
I do this all the time. You need to install ImageMagick: sudo apt-get install imagemagick Joel
for file in *.jpg; do convert $file ${file/jpg/png} done
I do this all the time. You need to install ImageMagick: sudo apt-get install imagemagick Joel