I have such a shell script;
while true
do
python get_proxies.py
python run1.py & python run2.py & python run3.py & python run4.py &
......
done
In this loop, I want to run such programs together, but I don't want the script to pass to the next loop until all the programs finish processing.
How can I manage that?
Thanks,