Skip to content

Instantly share code, notes, and snippets.

@jonnymaceachern
Created February 1, 2021 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonnymaceachern/4661e6cf8c3e2bcd3220d579eed22129 to your computer and use it in GitHub Desktop.
Save jonnymaceachern/4661e6cf8c3e2bcd3220d579eed22129 to your computer and use it in GitHub Desktop.
JPG to PNG batch convert using ImageMagick
for i in *.png ; do convert "$i" "${i%.*}.jpg" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment