我有一个bat脚本,它有block1命令。我把这个叫做block1
> mybat block1
并执行以下
:BLOCK1
CALL some command InputString
goto :EOF
)
如何更改InputString
以便它执行AnotherInputString
或任何其他输入
CALL some command AnotherInputString
答案 0 :(得分:1)
“如果有另一个命令行参数,请将该参数作为命令执行。否则,继续。”
:Loop
IF "%1"=="" GOTO Continue
CALL some command %1
SHIFT
GOTO Loop
:Continue