I want to be able to accomplish the following. Run script(1)-->sleep 5-->run script(2)-->sleep 5. This pattern needs to continue for the next 30 minutes before running script(3). Once all 3 scripts are run, they need to loop again in the same fashion.
I have no clue what I'm doing, I know it involves a while loop with a counter, etc. I don't know if this is correct and I don't know where to place script3.py. This is what I have so far:
#!/bin/bash
while true;
i=0
until [ i$ -eq 36]
do
python script1.py
sleep 5
python script2.py
sleep 5
i=$[$i+1]
python script3.py
done
Thanks for any feedback! Damo
python script3.pyafter thedone