Created
December 16, 2013 04:49
-
-
Save lbj96347/7982477 to your computer and use it in GitHub Desktop.
重命名iOS切图,命令行。这个是将*@2x.png全部转换成*.png的
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
for F in *.png ; | |
do cp $F ${F%@2x.png}.png; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment