如何使用python的子过程模块
执行此命令gunzip --name /tmp/file.gz > /home/aaaa/
答案 0 :(得分:0)
您可以使用subprocess
并将输出重定向到文件:
import subprocess
output_file = open("/home/aaaa/myoutput", "w")
subprocess.call(["gunzip", "--name", "/tmp/file.gz"], stdout=output_file)