Home > database >  Start simulations after each other from command line
Start simulations after each other from command line

Time:10-19

I’ve several simulations and I start simulation from command line in Windows like:

gatling.bat -s MySimulation1

But how do I pass more simulations so MySimulation1 is executed first and then MySimulation2?

CodePudding user response:

gatling.bat -s MySimulation1 && gatling.bat -s MySimulation2
  • Related