#!/bin/sh                                                                       
#This backgrounds were borrow from ServerSpy
#use this to scale a file
#WARNING it will overwrite ALL JPGS on directory
# by bruj0@moviegalaxy.com.ar
for i in *.jpg ; do 
convert -scale "640" $i $i
done

