Last active
October 17, 2015 16:32
-
-
Save samelie/3b6fecabdbd8230b10d4 to your computer and use it in GitHub Desktop.
resize imagemagik
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 i in *.png; do convert $i -resize 480x270 $i; done |
for i in *.jpg; do convert $i -resize 1280x720^ -gravity center -crop 1280x720+0+0 $i; done
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
find . -name "*.bak" -type f -delete