Skip to content

Instantly share code, notes, and snippets.

@cengizhancaliskan
Created June 15, 2021 08:19
Show Gist options
  • Save cengizhancaliskan/aec0d674af1996f25aff02fb01faea90 to your computer and use it in GitHub Desktop.
Save cengizhancaliskan/aec0d674af1996f25aff02fb01faea90 to your computer and use it in GitHub Desktop.
Png to jpg
#!/bin/bash
dir="/Users/$USER/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