I can run multiple Python scripts simultaneously from a bash script like this;
#!/bin/bash
python pr1.py &
python pr2.py &
python aop.py &
python loader.py &
But what if I want a batch to fire simultaneously and after they've run, start some more sequentially. Will this work?:
#!/bin/bash
python pr1.py &
python pr2.py &
python ap.py &
python loader.py
python cain.py
python able.py