Skip to content

Instantly share code, notes, and snippets.

@magec
Created May 5, 2011 13:37
Show Gist options
  • Save magec/957033 to your computer and use it in GitHub Desktop.
Save magec/957033 to your computer and use it in GitHub Desktop.
Onliners
To convert from iphone 2x to normal recursivelly
for i in `find ./ find ./ -regex '.*2x\.[jpg|png]+'`; do convert -resize 50% $i `dirname $i`/`basename "$i"|sed s/@2x//`; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment