摘要: 核心代码 1 def run(command): 2 #实时获取打印的命令 3 process = Popen(command, stdout=PIPE, shell=True) 4 while True: 5 line = process.stdout.readline() 6 if not li 阅读全文
posted @ 2020-04-26 17:11 青衫烟雨 阅读(1469) 评论(0) 推荐(0)