摘要: import os, re# execute command, and return the outputdef execCmd(cmd): r = os.popen(cmd) text = r.read() r.close() return text# write "dat... 阅读全文
posted @ 2015-03-31 14:29 ZaneYall 阅读(3450) 评论(0) 推荐(0) 编辑