Skip to content

Instantly share code, notes, and snippets.

@seyDoggy
Created November 6, 2012 21:05
Show Gist options
  • Save seyDoggy/4027533 to your computer and use it in GitHub Desktop.
Save seyDoggy/4027533 to your computer and use it in GitHub Desktop.
Batch image resize with command line sips. Note: Sizes are height then width.
for f in *; do sips -z 193 309 $f; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment