标签: python subprocess popen
我想在通过subprocess.pOpen命令打开的命令窗口中执行多个命令?怎么做?
像
p = subprocess.Popen("start cmd /k ", stdin=subprocess.PIPE, stdout=subprocess.PIPE,shell=True )
现在我想在我打开的同一个窗口中调用多个命令。 我不想将参数作为列表传递,因为它只会被视为列表中第一个元素的参数。