/ Published in: Bash
Resize images that are greater than 800x600 and place them in the "small" directory.
Expand |
Embed | Plain Text
for i in *jpg; do convert $i -resize 800x600\> small/$i; done
You need to login to post a comment.
Carolyne on 12/05/10
1 person have marked this snippet as a favorite
Resize images that are greater than 800x600 and place them in the "small" directory.
for i in *jpg; do convert $i -resize 800x600\> small/$i; done
You need to login to post a comment.