Skip to content

Instantly share code, notes, and snippets.

@SpacyRicochet
Last active August 29, 2015 13:56
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 SpacyRicochet/8958266 to your computer and use it in GitHub Desktop.
Save SpacyRicochet/8958266 to your computer and use it in GitHub Desktop.
One-liners to convert retina images to non-retina images
find . -name "*@2x.png" -exec convert "{}" -resize 50% "{}.bak" \;
find . -name "*@2x.png.bak" -exec rename 's|\@2x.png.bak|.png|' "{}" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment