Advertisement
priore

Rename all files to...

Feb 11th, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. ### rename all xxxxx.png files in to xxxxx@2x.png
  2. for f in *.png; do NEW=${f%.png}@2x.png; mv ${f} "${NEW}"; done;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement