我有一个运行如下的批处理文件:
c:\test.bt -abcd
现在在批处理文件中,我有以下代码:
if "%1" == "-abcd"
(
do something
)
else
(
do something else
)
但它在执行过程中不断给我以下错误:
The syntax of the command is incorrect.
if "-abcd" == "-abcd"
有人可以告诉我出了什么问题吗?
我有一个运行如下的批处理文件:
c:\test.bt -abcd
现在在批处理文件中,我有以下代码:
if "%1" == "-abcd"
(
do something
)
else
(
do something else
)
但它在执行过程中不断给我以下错误:
The syntax of the command is incorrect.
if "-abcd" == "-abcd"
有人可以告诉我出了什么问题吗?