I am looking for an example of a python/batch script:
- python script calls up the command line
- python script passes a batch script (several lines) to the command line
- batch script then executes in the command line
- python script recieves the result of the batch script
I assume the solution would depend on some kind of special python library?
Would the task of combining python/batch be much easier if the processes starts in batch rather than in python (would this be a more common solution)?