摘要:
subprocess.callThis is the recommended way to run shell commands in Python compared with old-fashioned os module.This is a realtime method, which means you can get the shell output on the fly, compared with following "subprocess.check_output" method, which collect all output in its return 阅读全文