How to launch multiple Julia runs one after another?

Put in your master_run.jl file the following

run(`julia A01.jl`)
run(`julia A02.jl`)
...
run(`julia A25.jl`)

See Running External Programs · The Julia Language and Getting Started · The Julia Language.

1 Like