Skip to content

Instantly share code, notes, and snippets.

@nd3w
Created July 4, 2024 14:50
Show Gist options
  • Save nd3w/07577ecd04cfff0a7795649b8962b549 to your computer and use it in GitHub Desktop.
Save nd3w/07577ecd04cfff0a7795649b8962b549 to your computer and use it in GitHub Desktop.
Shell script to batch convert PNG to JPG
#!/bin/bash
#convert
for image in *.png; do
convert "$image" -quality 80 "${image%.png}.jpg"
echo “$image converted to ${image%.png}.jpg ”
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment