It is a simple task to make things complex, but a complex task to make them simple.
#!/bin/sh for file in *.JPG do echo "Resizing file $file ..." convert -resize 640x480 $file $file done