我正在尝试编写“引导程序”脚本来解析并将参数传递到我框架中的其他应用程序中。下面这个最小的、可重现的例子,实际应用要复杂得多
该脚本的基本语法是
bootstrapper.bat type command "foo=1" "bar=test2" "baz=true"
它应该调用
type/command.bat 1 test2 true
有问题的片段是这个嵌套的 for 循环:
setlocal enabledelayedexpansion
rem this is actually fetched elsewhere in live app
set procedure_arguments_count=3
set arguments=
for /L %%L in (1,1,!procedure_arguments_count!) do (
for /f "tokens=1,2 delims==" %%a in ("%~3") do set arguments=!arguments! %%b
shift /3
)
echo !arguments!
问题是arguments
等于1 1 1
而不是1 test2 true
在执行此循环之后。
我相信内部循环预先填充了%~3
设置为foo=1
并忽略了 shift 命令。我无法更改shift
,因为我需要支持 9 个以上的参数,也无法删除外循环(出于其他原因)。
问题是 - 我可以延迟扩展脚本参数吗?