superman_chao 发表于 2017-8-29 11:40:56

批处理请教

adb shell下cd进一个文件夹下,在这个文件夹下要多次输入命令,批处理应该怎么写
例如:在CMD命令中,我可以这么写
adb root
adb remount
adb shell
cd system/ttbin
wlnconfig /dev/smd3 reset
wlnconfig /dev/smd3 rawcmd 0x06, 0x03
在批处理中怎么写????

Moses_Lee 发表于 2017-8-31 10:04:43

@Echo off
D:
cd ***
adb root
adb remount
adb shell
cd system/ttbin
wlnconfig /dev/smd3 reset
wlnconfig /dev/smd3 rawcmd 0x06, 0x03
pause

其中***是你的具体文件夹

发表于 2017-9-4 12:27:07

就按你写的就行。
页: [1]
查看完整版本: 批处理请教