Skip to content

Instantly share code, notes, and snippets.

@OdinsHat
Last active August 29, 2015 14:19
Show Gist options
  • Save OdinsHat/5885dfeb89a0e93b6563 to your computer and use it in GitHub Desktop.
Save OdinsHat/5885dfeb89a0e93b6563 to your computer and use it in GitHub Desktop.
Batch convert image files size
#!/bin/sh
for i in *.jpg; do convert $i -resize 97x57 $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment