这就是我所拥有的:
@ECHO OFF
IF [%1]==[](
SET /P server=What url would you like to proxy to? :
SET /P location=What is the path to your local files? :
)
IF [%1]==[ggp](
SET server=10.10.10.10
SET location=c:/Users/Brook/Desktop/hello
)
start chrome.exe localhost:8080/login
call:startServer
:startServer
node httpdp.js --server %server% --srcpath %location%
%ifErr% (
call:startServer
)
GOTO:EOF
当 if 条件被取出时,文件运行良好,所以我的语法有问题,但我不知道。
在检查参数是否与各种字符串匹配之后,我实际上想将第一个 if 条件放在 else 或 default 块中,如果有人知道该怎么做......
谢谢!