Created
March 26, 2015 10:48
-
-
Save linkesch/262a3589a26997b2657d to your computer and use it in GitHub Desktop.
Batch convert image format on Mac OS X
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
mkdir converted; for i in *.jpg; do sips -s format png $i --out converted/$i.png; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment