/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
for image in *.jpg; do convert $image -resize 800x600 800x600-$image; done