Loop over a range of numbers to download with wget
if you are using Bash 4.0, you can do this:
wget example.com/imageId={1..100}.jpg
It's fairly easy, even for someone with not much programming experience. When in doubt always read the Bash manual:
for i in {1..100}
do
wget "example.com/imageID=$i"
done