Last active
August 29, 2015 14:06
-
-
Save yatatsu/a250f08f259e54a8da0d 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 | |
FILES=*@3x.png | |
for file in ${FILES[@]} | |
do | |
convert $file -resize '66%' ${file%@3x.png}@2x.png | |
convert $file -resize '33%' ${file%@3x.png}.png | |
done | |
echo 'done.' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment