0

我想将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 

有什么建议么?

4

1 回答 1

1

在评论中给出的帮助下,我得到了答案

for /f "delims=" %%A in ('adb shell getprop ro.product.brand') do SET brand=%%A
for /f "delims=" %%B in ('adb shell getprop ro.product.model') do SET model=%%B
echo Marca\Modelo > Test.txt
echo %brand%\%model%  >> Test.txt

回答

Marca\Modelo 
samsung\SM-G920I  
于 2016-06-27T04:56:00.050 回答