Created
December 21, 2019 16:29
-
-
Save fordnox/62064fa00568f89b23378067a4f69e2d to your computer and use it in GitHub Desktop.
Convert image formats on MacOS
This file contains hidden or 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 | |
#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