adb查找文件
备注:当前的命令已经在Android P上得到过验证
- 执行 adb shell
- 执行 find . -name "filename"
通过命令行查看进程
adb shell ps -ef | findstr "baidu"
设置时间
- 查看时间: date
- 设置时间: adb shell date 080711542020.00 set
查看当前rom的feature标志
adb shell pm list features > feature.txt
adb详细的抓取日志
adb logcat -v time -s *:E > /mmt/sdcard/1.log(eg:adb logcat -v time -s appname:E>d:/1.log)
查看cpu当前的占用率
adb shell top -m 100 -n 1 -s cpu | grep package
adb查看当前的存活进程
- adb shell
- ps -A | grep "weixin"