I think that
mogrify -resize \"1000>\" *.jpg
resizes a bunch of jpegs so that the shorter side is 1000px if that side was longer than 1000px
You could also use:
find . -type f -exec convert {} -resize "1000>" {} \;
this might also be:
find ./*.jpg -exec convert {} -resize "1000>" {} \;