Created
July 23, 2015 09:56
-
-
Save cyupa/0579e2c4c50313e9ed6b to your computer and use it in GitHub Desktop.
Command to rename files contaning -100 to @3x
This file contains 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
find . -type f -name "*-100*" -exec sh -c 'mv "$0" "${0/-100/@3x}"' '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment