Skip to content

Instantly share code, notes, and snippets.

@matthewmayer
Created December 5, 2012 11:47
Show Gist options
  • Save matthewmayer/4214946 to your computer and use it in GitHub Desktop.
Save matthewmayer/4214946 to your computer and use it in GitHub Desktop.
Loop through PNG files in a folder, creating non-retina versions from @2x retina versions if it does not already exist.
#!/bin/bash
for i in *@2x.png
do
if [ ! -f ${i/@2x.png/}.png ]
then
convert $i -resize 50% ${i/@2x.png/}.png
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment