mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
31 lines
692 B
Batchfile
31 lines
692 B
Batchfile
|
@echo off
|
||
|
echo ------------ Testing for1 ------------
|
||
|
echo --- plain FOR with multiple lines
|
||
|
for %%i in (A
|
||
|
B
|
||
|
C) do echo %%i
|
||
|
echo ------------ Testing for2 ------------
|
||
|
echo --- plain FOR with lines and spaces
|
||
|
for %%i in (D
|
||
|
E
|
||
|
F) do echo %%i
|
||
|
echo ------------ Testing for3 ------------
|
||
|
echo --- plain FOR with multiple lines and commas
|
||
|
for %%i in (G,
|
||
|
H,
|
||
|
I
|
||
|
) do echo %%i
|
||
|
echo ------------ Testing for4 ------------
|
||
|
echo --- plain FOR with multiple lines and %%I
|
||
|
for %%i in (J
|
||
|
K
|
||
|
L) do echo %%I
|
||
|
echo ------------ Testing for5 ------------
|
||
|
echo --- plain FOR with multiple lines and %%j
|
||
|
for %%i in (M,
|
||
|
N,
|
||
|
O
|
||
|
) do echo %%j
|
||
|
echo ------------ End of Testing ------------
|
||
|
echo --- Testing ends here
|