Skip to content

Instantly share code, notes, and snippets.

@linkesch
Created March 26, 2015 10:48
Show Gist options
  • Save linkesch/262a3589a26997b2657d to your computer and use it in GitHub Desktop.
Save linkesch/262a3589a26997b2657d to your computer and use it in GitHub Desktop.
Batch convert image format on Mac OS X
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