if命令的奇怪错误

时间:2015-03-17 15:35:13

标签: windows batch-file sed cmd

我刚刚完成了一个批处理文件。当我运行它时,我面临一个奇怪的错误!这是首发代码:

findstr    "ro.product.model="     build.prop     >tmp.txt
cscript "sed.vbs" "tmp.txt"     "ro.product.model=" ""
set /p device=>tmp.txt
del "tmp.txt"
cd C:\Kitchen\WORKING_FOLDER\system
echo Is your device a MediaTek (MTK) device?
set /p remt= y or n?
if %remt%==y goto mk
if %remt%==n goto no

:no

if %device% == GT-I9001 (

set bootimg=/dev/block/mmcblk0p8

goto bdrom

)

这只是其中约67个。当我执行并选择n以提前退出程序时出错:

( was unexpected at this time

我尝试删除括号等,没有任何效果!即使语法也是正确的命令,我无法理解我在哪里犯错误。

0 个答案:

没有答案