Skip to content

Instantly share code, notes, and snippets.

@julenka
Last active August 29, 2015 14:04
Show Gist options
  • Save julenka/3ef9fbfe02abab498e23 to your computer and use it in GitHub Desktop.
Save julenka/3ef9fbfe02abab498e23 to your computer and use it in GitHub Desktop.
convert all pngs to jpgs in dir #bash
for im in *.png; do
im_jpg=${im/.png/.jpg}
convert $im $im_jpg
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment