Created
January 29, 2016 12:43
-
-
Save skounis/706d621469e974d478ed to your computer and use it in GitHub Desktop.
Batch Convert tiff images to jpg with sips - MacOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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