标签: python shell exception subprocess popen
我正在使用python的subprocess.Popen来运行Shell进程(使用shell=True)。
subprocess.Popen
shell=True
我不使用subprocess.check_output是因为我不想阻塞,我想不断地获得该过程的标准,我可以通过遍历Popen的{{ 1}}个成员。
subprocess.check_output
Popen
是否可以检查stdout(使用Popen)中发生的异常/错误?
stdout
我想拥有与shell=True中的便利类似的便利,其中例外会冒充check_output。
check_output