Skip to content

Instantly share code, notes, and snippets.

@lbj96347
Created December 16, 2013 04:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lbj96347/7982477 to your computer and use it in GitHub Desktop.
Save lbj96347/7982477 to your computer and use it in GitHub Desktop.
重命名iOS切图,命令行。这个是将*@2x.png全部转换成*.png的
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