Well the thing is this is pretty easy do and to know. however dont do it in mel let the shell of your computer sort it out. Its the kind of basic computrer usage stuff thet we inherit form the "1970".*
Maya as allmost any computer program dwesigned for computation has a commandlien version. No a commandline is the perfect tool for this, because what it does i it launches a render (thats effectively what batch does too0), then returns back to the prompt for more commands. Now you can simply script them together by makeing a batch file wich is essentially just command stringed together.
So start by actually learning how to use the operating sytem of your computer. It provides a more easier to use functionality for this.
So examle for windows (if you use mac or linux chack the documentation on batching for your choice of shelll language) make a file that reads:
render -r mr -s 10 -e 20 -preRender("any needed init mel here") -cam persp file1
render -r mr -s 20 -e 129 -preRender("any needed init mel here") -cam persp2 file1
render -r mr -s 10 -e 20 -preRender("any needed init mel here") -cam persp file2
render -r mr -s 10 -e 20 -preRender("any needed init mel here") -cam persp file3
render -r mr -s 10 -e 20 -preRender("any needed init mel here") -cam persp file4
....
etc then execute it, you could make this a loop too but tahts overcourse.
anyway you can also call the render directly form within a system command, in mel wich gives mal the same kind of wait capacity. And calling batch render is doing exactly this but without asking for return.
This has alos a advantage, since its commandline you can spread teh task easily form one place to as many computers as you happen to have access to and have maya installed on them.'
*this si the kind of fundamental computing meny people skip out on that actually is the most valueble thing to know on ANY system yes even on mac. Sadly it takes 1 day to teach but years to explain the benefits for causla users. 3D users arent casual so they are expected to know this.
for me this is a bit sad since most modern computer users cant benefit of the most fundamental aspects of computing that all computer users in 70's 80's and very early 90's took for granted.