Created
October 20, 2016 23:17
-
-
Save aaronpdennis/adc97f437b8b4a1eef50f4fb56227355 to your computer and use it in GitHub Desktop.
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/sh | |
image=0 | |
number_of_images=23 | |
until [ $image -gt $number_of_images ] | |
do | |
echo $image | |
convert $image.png -crop 1008x1003+775+297 $image.cropped.png | |
a=`expr $a + 1` | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment