Throw them in a for statement.
Example:
Code:
for IMG in `ls *.jgp`
do
convert -geometry 800x600 $IMG $IMG
done
This would resize all JPG's in the pwd to 800x600 keeping the same name.
You could probably use the command basename or rename command to rename them.