I would like to execute multiple commands within the command window I opened thru the subprocess.pOpen command ? how to do it ?
Something like
p = subprocess.Popen("start cmd /k ", stdin=subprocess.PIPE, stdout=subprocess.PIPE,shell=True )
now I want to call multiple commands in the same window I opened. I don't want to pass the argument as a list since it will only be treated as parameters of the first element in the list.