adb shell 应用 1
- 查看目录结构:
adb shell ls
- 查看系统当前日期:
adb shell date
- 查看系统 CPU 使用情况:
adb shell cat /proc/cpuinfo
- 查看系统内存使用情况:
adb shell cat /proc/meminfo
adb shell 应用 2 - 查看应用列表
- 显示所有应用:
adb shell pm list packages
- 显示系统自带应用:
adb shell pm list packages -s
- 显示第 3 方应用:
adb shell pm list packages -3
adb shell 应用 3 - 查看当前的页面名
adb shell "dumpsys window |grep mCurrentFocus"
清除应用数据及缓存
adb shell pm clear <包名>
标签:shell,14,查看,list,缓存,adb,应用,pm From: https://www.cnblogs.com/csfsz/p/17904934.html