Skip to content

Instantly share code, notes, and snippets.

@ClintChil
Forked from david90/resizer.sh
Last active October 17, 2015 18:35
Show Gist options
  • Save ClintChil/3bdae25dd94195ce814e to your computer and use it in GitHub Desktop.
Save ClintChil/3bdae25dd94195ce814e to your computer and use it in GitHub Desktop.
#!/bin/bash -e
# requires ImageMagick! Install via homebrew, http://brew.sh
# brew install imagemagick
# Ensure we're running in location of script.
cd "`dirname $0`"
for f in *; do
if [[ $f == *@3x* ]];
then
echo "$f -> ${f//@3x/@2x}, ${f//@3x/}"
convert "$f" -resize 66.66666% "${f//@3x/@2x}"
convert "$f" -resize 33.33333% "${f//@3x/}"
fi
done
echo "Complete"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment