Skip to content

Instantly share code, notes, and snippets.

@renepardon
Created November 17, 2011 20:04
Show Gist options
  • Select an option

  • Save renepardon/1374338 to your computer and use it in GitHub Desktop.

Select an option

Save renepardon/1374338 to your computer and use it in GitHub Desktop.
Rename images so that they can be used in iPhone4 (Retina)
#!/bash/sh
find . -name "*.png"
while read file;
do
mv "$file" ${file%.*}"@2x.png"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment