Skip to content

Instantly share code, notes, and snippets.

@fordnox
Created December 21, 2019 16:29
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 fordnox/62064fa00568f89b23378067a4f69e2d to your computer and use it in GitHub Desktop.
Save fordnox/62064fa00568f89b23378067a4f69e2d to your computer and use it in GitHub Desktop.
Convert image formats on MacOS
#!/bin/bash
#Convert all jpeg files in current dir to PNG in new folder Converted
sips -s format png *.jpeg –out Converted
#Convert all tiff files in current dir to jpeg in new folder Converted
sips -s format jpeg *.tiff –out Converted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment