Skip to content

Instantly share code, notes, and snippets.

@americos
Created April 28, 2014 18:50
Show Gist options
  • Save americos/11380698 to your computer and use it in GitHub Desktop.
Save americos/11380698 to your computer and use it in GitHub Desktop.
Renaming retina images filenames from: @2x to _2x
for filename in *@2x*; do mv "$filename" "${filename//@2x/_2x}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment