Skip to content

Instantly share code, notes, and snippets.

View angiep's full-sized avatar

Angie Panfil angiep

View GitHub Profile
@julianlconnor
julianlconnor / @2xappend.sh
Created May 15, 2012 18:08
Small script that runs through all images in the current directory that do not have the '@2x' identifier and promptly adds it.. lol
for i in `ls | grep -v "@2x"`;
do mv $i `echo $i|sed s/\.png/@2x\.png/`;
done;