1 2 3 4 5 6 7 8 9 10 11 12 13 |
@echo off set var=texto1 texto23 texto2556 call :a00 %var% REM resto del script pause goto :EOF :a00 if {%1}=={} goto :EOF echo %1 shift goto :a00 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
@echo off set var=texto1 texto23 texto2556 call :a00 %var% REM resto del script pause goto :EOF :a00 if {%1}=={} goto :EOF echo %1 shift goto :a00 |