本文介绍了获取已连接设备的列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我在shell中键入adb devices时我得到这样的东西

when I type adb devices in the shellI get something like this

List of devices attached
HT06RPQ002T1    device
HT06RPQ002T1    device

我想要一些仅打印电话ID的外壳脚本例如在这种情况下打印

I want some shell script that will print just the ids of the phonesfor example in this case to print

HT06RPQ002T1
HT06RPQ002T1

如果连接了更多设备以打印更多ID ...

if more devices are attached to print more ids...

谢谢

编辑

我试图将所有内容放入这样的变量中asd = adb devices但我不知道如何解析连接的是一台设备还是十台设备...

I tried to put everything in a variable like thisasd=adb devicesbut I do not have idea how to parse if I have one device attached or I have 10 devices...

推荐答案

adb devices | awk 'NR>1 {print $1}'

这篇关于获取已连接设备的列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 18:06