Skip to content

Instantly share code, notes, and snippets.

@cengizhancaliskan
Created September 24, 2017 09:19
Show Gist options
  • Save cengizhancaliskan/1e6d0a673d96ed6fcb5d8ca9d9ca9914 to your computer and use it in GitHub Desktop.
Save cengizhancaliskan/1e6d0a673d96ed6fcb5d8ca9d9ca9914 to your computer and use it in GitHub Desktop.
Png to Jpeg for imagemagick
#!/bin/bash
dir="/Users/cengizhan/images"
find $dir -type f -name '*.png' -print0 | while IFS= read -r -d '' file; do
convert "$file" "${file%.*}.jpg"
rm -f $file
echo "$file converted"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment