adb shell 选择指定设备 的脚本

前端之家收集整理的这篇文章主要介绍了adb shell 选择指定设备 的脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

问题:

电脑连接两台以上的android 设备时

adb shell

会返回

more than one device

解决方法:

adb device

返回:

List of devices attached
87381d28093700000000    device
yasudyasadasdasdasda    device
  • Step2.指定设备shell(比如选择123456)
adb -s 87381d28093700000000 shell

但是输入这么长的序列号,我还不如直接把其他的设备都拔掉…

或许可以写个脚本:

#!/bin/bash
PS3="please select a device :"
array=($(adb devices | grep ".device$"))
i=0
length=${#array[@]}
while [ "$i" -lt "$length" ];do
    if 
        ((i%2!=0)) 
    then
        unset array[i]  
    fi
    ((i++))
done
((length++))
array[$length]=exit
select var in "${array[@]}" ;do
    break
done
if 
    [[ "$var" != "exit" ]]
then
    echo "Please complete the order :"
    read -p "adb -s $var " cmd
    adb -s $var $cmd
fi

运行效果:

此脚本适用于Linux和Mac

使用方法
1. 创建文件

vim adbdevice

2.拷贝代码

3.添加可执行权限

sudo chmod +x adbdevice

4.运行

原文链接:https://www.f2er.com/bash/388753.html

猜你在找的Bash相关文章