Skip to content

Instantly share code, notes, and snippets.

@skounis
Created January 29, 2016 12:43
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skounis/706d621469e974d478ed to your computer and use it in GitHub Desktop.
Save skounis/706d621469e974d478ed to your computer and use it in GitHub Desktop.
Batch Convert tiff images to jpg with sips - MacOS
#!/bin/bash
for i in *.tiff; do sips -s format jpeg $i --out $i.jpg;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment