代码改变世界

随笔档案-2017年06月

查看ps和dumpsys netpolicy

2017-06-22 18:11 by 黄阿星, 272 阅读, 收藏,
摘要: import osimport timefile = "data.txt" text = os.popen("adb shell ps | findstr com.tencent")fw = open(file,'w')for line in text.readlines(): #print lin 阅读全文

批量安装/卸载手机apk--python语言

2017-06-22 17:41 by 黄阿星, 719 阅读, 收藏,
摘要: import osimport timefiledir = "D:\\app"def install(): files = os.listdir(filedir) for file in files: text = os.popen("adb install -r D:\\app\\"+ file) 阅读全文