/ Published in: Bash
A simple one-liner to resize images from commandline
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
for I in *.jpg; do convert "$I" -resize 250x250 "thumb.$I"; done
URL: batch-resize-images-with-imagemagick