This file contains hidden or 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 | |
# Process to get File Name & 2x, 3x file names | |
xNAME=`echo "$f" | cut -d'.' -f1` | |
cp "$f" "[email protected]" | |
cp "$f" "[email protected]" | |
# Set proper resolution to original file | |
sips -s dpiHeight 72.0 -s dpiWidth 72.0 "$f" |