Created
October 18, 2012 08:59
-
-
Save cloudsben/3910558 to your computer and use it in GitHub Desktop.
转换图片shell脚本
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 | |
for i in $(seq 0 $2) | |
do | |
echo $i | |
convert -density 72 $1[$i] thumb-$i.png | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment