$ adb --help

-s SERIAL  use device with given serial (overrides $ANDROID_SERIAL)

$ adb devices
List of devices attached 
emulator-5554   device
7f1c864e    device

$ adb shell -s 7f1c864e
error: more than one device and emulator

当前回答

你可以使用它来连接你的特定设备:

   * adb devices
  --------------
    List of devices attached
    9f91cc67    offline
    emulator-5558   device

我想连接到第一个设备“9f91cc67”

* adb -s 9f91cc67 tcpip 8080
---------------------------
restarting in TCP mode port: 8080

then

* adb -s 9f91cc67 connect 192.168.1.44:8080
----------------------------------------
connected to 192.168.1.44:8080

也许这能帮到别人

其他回答

对于Windows,这里有一个简单的例子,告诉你如何在多个设备上安装一个文件

FOR /F "skip=1"  %x IN ('adb devices') DO start adb -s %x install -r myandroidapp.apk

如果您计划在批处理文件中包含此文件,请将%x替换为%%x,如下所示

FOR /F "skip=1"  %%x IN ('adb devices') DO start adb -s %%x install -r myandroidapp.apk

下面是我为自己编写的shell脚本:

#! /bin/sh

for device in `adb devices | awk '{print $1}'`; do
  if [ ! "$device" = "" ] && [ ! "$device" = "List" ]
  then
    echo " "
    echo "adb -s $device $@"
    echo "------------------------------------------------------"
    adb -s $device $@
  fi
done

Adb -d shell(或Adb -e shell)。

如果您懒得输入完整的ID,这个命令在大多数情况下都有帮助。

从http://developer.android.com/tools/help/adb.html # commandsummary:

-d -将adb命令直接到唯一连接的USB设备。当连接多个USB设备时返回错误。 -e -将adb命令直接指向唯一正在运行的模拟器。当多个模拟器正在运行时返回一个错误。

在命令前使用-s选项指定设备,例如:

adb -s 7f1c864e shell

对于多个模拟器,使用进程的IP和端口作为id,例如:

adb -s 192.168.232.2:5555 <command>

参见如何获取Android模拟器的IP地址? 但如果只有一个模拟器,请尝试: Adb -e <命令>

参见http://developer.android.com/tools/help/adb.html#directingcommands

当有多个设备连接时,这个要点将为你显示菜单做大部分工作:

$ adb $(android-select-device) shell
1) 02783201431feeee device 3) emulator-5554
2) 3832380FA5F30000 device 4) emulator-5556
Select the device to use, <Q> to quit:

为了避免输入,您可以创建一个别名,其中包括此处解释的设备选择。