Created
April 28, 2014 18:50
-
-
Save americos/11380698 to your computer and use it in GitHub Desktop.
Renaming retina images filenames from: @2x to _2x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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