Skip to content

Instantly share code, notes, and snippets.

@yatatsu
Last active August 29, 2015 14:06
Show Gist options
  • Save yatatsu/a250f08f259e54a8da0d to your computer and use it in GitHub Desktop.
Save yatatsu/a250f08f259e54a8da0d to your computer and use it in GitHub Desktop.
#!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