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
助言がありますか?