Skip to content

Instantly share code, notes, and snippets.

@cloudsben
Created October 18, 2012 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cloudsben/3910558 to your computer and use it in GitHub Desktop.
Save cloudsben/3910558 to your computer and use it in GitHub Desktop.
转换图片shell脚本
#!/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