在多裝置設定中將 ADB 命令直接指向特定裝置

1.按序列號定位裝置

使用 -s 選項後跟裝置名稱來選擇 adb 命令應在哪個裝置上執行。在命令之前-s 選項應該排在第一位。

adb -s <device> <command>

例:

adb devices

List of devices attached
emulator-5554       device
02157df2d1faeb33    device

adb -s emulator-5554 shell

實施例#2:

adb devices -l

List of devices attached
06157df65c6b2633    device usb:1-3 product:zerofltexx model:SM_G920F device:zeroflte
LC62TB413962        device usb:1-5 product:a50mgp_dug_htc_emea model:HTC_Desire_820G_dual_sim device:htc_a50mgp_dug

adb -s usb:1-3 shell

2.僅連線一種裝置型別時,定位裝置

你可以使用 -e 定位唯一正在執行的模擬器

adb -e <command>

或者你可以使用 -d 定位唯一連線的 USB 裝置

adb -d <command>