〖Android〗存在多个Android设备时,使用Shell脚本选择一个Android设备

Shell脚本:

#!/bin/bash
devices=( $(adb devices|grep device$|awk '{print $1}'|xargs echo) )

case ${#devices[@]} in
    0 )
        echo "can't found a android device!"
        ;;
    1 )
        serial=$devices
        ;;
    * )
        select serial in ${devices[@]}; do
            break;
        done
        ;;
esac

if [[ -z $serial ]]; then
    echo "Not select a android device, exit not"
    exit 1
fi

adb -s $serial shell echo OK
原文地址:https://www.cnblogs.com/scue/p/4447935.html