我想将adb
以下命令的结果保存为我的脚本中的变量,但结果是错误的。
adb shell getprop ro.product.brand
输出:三星
adb shell getprop ro.product.model
输出:SM-G920I
set /p Brand=adb shell getprop ro.product.brand
set /p Model=adb shell getprop ro.product.model
echo Brand: %Brand% Model: %Model% > Test.txt
但结果是:
Brand: 0 Model: 0
有什么建议么?