I have 20 python scripts and i want to run them in parallel in different bash window, that i can do with the below command and run them in backend parallel:-
python testv.py &
python testv1.py &
python testv2.py &
python testv3.py &
python testv4.py &
python testv5.py &
python testv6.py &
python testv7.py &
python testv8.py &
python testv9.py &
python testv10.py &
python testv11.py &
python testv12.py &
python testv13.py &
python testv14.py &
python testv15.py &
python testv16.py &
python testv17.py &
python testv18.py &
python testv19.py &
python testv20.py &
I converted the above in a bash script :- vaa.sh
#!/bin/bash
python testv.py &
python testv1.py &
python testv2.py &
python testv3.py &
python testv4.py &
python testv5.py &
python testv6.py &
python testv7.py &
python testv8.py &
python testv9.py &
python testv10.py &
python testv11.py &
python testv12.py &
python testv15.py &
python testv16.py &
python testv17.py &
python testv18.py &
python testv19.py &
python testv20.py &
I want to run this for 2 3 hours or say forever till the intervention. How can i achieve this.
I tried to add the vaa.sh in a cronjob for 15 minutes but i want to do it in a way so that as soon as the scripts will finish it should again start whether the total time is 15 mint or 20 min.