NotePublic/Software/Application/ADB/Adb_操控多个设备.md

12 lines
320 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Adb 操控多个设备
同时连接多个 android 设备后,需要指定设备才能执行命令。
adb devices
后会显示设备串号 serialNumbe。对其发起指令在adb后加-s参数跟相应设备串号
adb -s <serialNumbe> shell
即可进入相应设备adb shell。其它指令类推。