摘要: # -*- encoding: utf-8 -*- from subprocess import Popen, PIPE, STDOUT import time def Run_Cmd(cmd): # 执行命令 p = Popen(cmd, shell=True, stdin=PIPE, stdou 阅读全文
posted @ 2022-12-15 15:29 QQmini 阅读(27) 评论(0) 推荐(0) 编辑