Answer the question
In order to leave comments, you need to log in
How to run multiple python scripts in turn from console?
Hello.
Tell me how you can run several python scripts from the console in turn.
Tried through:
python *
Answer the question
In order to leave comments, you need to log in
for i in `ls /path/*.py`; do python $i; done - wait for the execution of the previous
for i in `ls /path/*.py`; do python $i & done - don't wait for the previous one to complete
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question