调用标签时,我想知道如何在批处理脚本中调用超过9个参数。例如,以下显示,我有12个参数分配,并尝试回显所有这些参数。
CALL:LABEL "one" "two" "three" "four" "five" "six" "seven" "eight" "nine" "ten" "eleven" "twelve" PAUSE GOTO:EOF :LABEL echo %1 echo %2 echo %3 echo %4 echo %5 echo %6 echo %7 echo %8 echo %9 echo %10 echo %11 echo %12
输出为? ?和?最终成为one1 one2。我已经尝试使用大括号,括号,引号,数字的单引号,没有任何运气。
那是
原文链接:https://www.f2er.com/windows/372302.htmlshift
command。
您可以使用循环,在移动之前存储变量,或者像这样快速执行:
CALL:LABEL "one" "two" "three" "four" "five" "six" "seven" "eight" "nine" "ten" "eleven" "twelve" PAUSE GOTO:EOF :LABEL echo %1 echo %2 echo %3 echo %4 echo %5 echo %6 echo %7 echo %8 echo %9 shift shift shift echo %7 echo %8 echo %9
您可以用循环替换shift命令,以防有多个参数。以下for循环执行9次移位,使%1为第10个参数。
@for /L %%i in (0,1,8) do shift