目录
与应用交互
启动应用/ 调起 Activity
- adb shell am start -n package/launch_activity
停止应用
-
adb shell am force-stop <packagename>
进程相关
查看进程
- adb shell ps : 查看所有进程
- adb shell ps | find <packageName> : 查看某个应用进程 如,adb shell ps| find "com.taobao.taobao"
停止进程
- adb shell -9 进程号
查看资源情况
- adb shell top : 查看所有进程
- adb shell -d 2 | find "tom.taobao.taobao"
参数说明
- -m num Maximum number of processes to display. 最多显示多少个进程
- -n num Updates to show before exiting. 刷新次数
- -d num Seconds to wait between updates. 刷新间隔时间(默认5秒)
- -s col Column to sort by (cpu,vss,rss,thr). 按哪列排序
- -t Show threads instead of processes. 显示线程信息而不是进程
- -h Display this help screen. 显示帮助文档
查看进程 UID
- adb shell dumpsys package <packagename> | find "userId="
文件相关
- adb shell ls :查看目录下文件
- adb shell pwd:查看当前路径
- adb shell mkdir:新建文件夹
- adb shell touch:新建文件
- adb shell cd :切换目录
- adb shell rm :删除