Hi!
I want to make a python program that runs different simple command line scripts. Right now I use os.system which works fine for running the scripts, but the problem is that the scripts sometimes halt and wait for input from the user. So my question is, how do i programmatically detect when an input has to be made, and then make that input instead of me having to make it manually?
my code like something like this...
os.system(aCommand)
os.system(anotherCommand)
aCommand and antoherCommand might stop and wait for user input which i want to make programmatically.
/Sason