我编写了一个登录脚本来登录我的设备,当连接了多个设备时,如何在特定设备上运行该脚本。
login.sh
adb shell input text abc@def.com
adb shell input keyevent 61
adb shell input text abc123
adb shell input keyevent 61
答案 0 :(得分:0)
连接多个设备后,您可以使用adb devices
检索列表:
$ adb devices
List of devices attached
017296d5904c device
192.168.56.101:5555 device
然后,您可以使用-s
选项来定位特定设备:
adb -s 017296d5904c shell input keyevent 61
最后一步是使用for循环在设备列表上进行迭代并运行命令。