/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#!/bin/sh for i in `ls *.jpg`; do convert -geometry 320x240 $i galleria-$i done