Skip to content

Instantly share code, notes, and snippets.

@yuksbg
Created October 29, 2014 10:11
Show Gist options
  • Save yuksbg/d46015cf61ab4dcace6c to your computer and use it in GitHub Desktop.
Save yuksbg/d46015cf61ab4dcace6c to your computer and use it in GitHub Desktop.
Convert all png,gif files in directory to jpg with image magick
set -e
dir=/var/www/default/public_images
for ext in png gif; do
for i in `find "$dir" -type f -regex '.*'$ext `; do
( filename=${i%.*}
convert "$i" -quality 90 -strip "$filename.jpg"
echo "$filename" )
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment