I have a text file example contents line by line:
python example.py (do some stuff 1)
python example.py (do some stuff 2)
python example.py (do some stuff 3)
python example.py (do some stuff nth)
Is there a simple script/way to run all those commands line by line from the text file in python?
Thanks in advance