概念:
shift /n 该命令行开关告诉命令从第n个参数向前移位一位
命令行参数的一个限制是它只能接受到%9的参数[%1开始]
@ECHO OFF
:Loop
IF "%1"=="" GOTO Continue
echo %1%
GOTO Loop
shift rem 如果没有使用循环的话,将会只能是%1->a %2->b ... 但是使用shift加上循环之后,%1 -> a shift 之后后移一位 %1 -> b
:Continue
rem 测试方法 a.bat a b c d e f j h i h
标签:GOTO,shift,Continue,rem,DOS,Loop
From: https://www.cnblogs.com/sqmw/p/16637445.html