常用ADB命令行
adb devices
查看链接的设备
adb shell
进入设备根目录
adb pull
从设备上拉文件下来
adb pull [source] [dest]
eg.
adb pull /mnt/sdcard/temp.mp4 temp.mp4
adb push
将文件推到设备中
adb push [source] [dest]
eg.
adb push temp.mp4 /mnt/sdcard/temp.mp4
adb screenshot
截图
eg.
adb screenshot /mnt/sdcard/screenshot.png
adb screenrecord
录制视频
adb screenrecord [dest]
eg.
adb screenrecord /mnt/sdcard/temp.mp4