adb命令2
作者:互联网
1、获取手机型号指令
adb shell cat /system/build.prop | findstr "ro.product.model"
2、获取手机处理器信息
adb shell cat /proc/cpuinfo | findstr "Processor"
3、获取手机内存信息
adb shell cat /proc/meminfo | findstr "MemTotal"
看到的是988792,988792/1024=965.6M
4、获取手机屏幕分辨率信息
adb shell dumpsys window | findstr "Display"
5、获取手机系统版本信息
adb shell getprop ro.build.version.release
6、获取手机内核版本信息
adb shell cat /proc/version
7、获取手机运营商信息
adb shell getprop gsm.operator.alpha
8、获取手机网络类型信息
adb shell getprop gsm.network.type
9、获取手机串号信息
adb shell dumpsys iphonesubinfo | findstr "Device ID"
10、获取手机android系统各个分区的相关信息
adb shell df
标签:findstr,shell,获取,cat,命令,adb,手机 来源: https://www.cnblogs.com/fenty-lin/p/16541093.html