Descubrimiento en comando FOR [Batch]

Iniciado por leogtz, 16 Abril 2009, 22:09 PM

0 Miembros y 1 Visitante están viendo este tema.

leogtz

Hola, siguiendo con el descubrimiento que ha hecho Carlos:
CitarLa utilidad de mi descubrimiento es que por ejemplo si antes declaraban:

Código:

for /f "tokens=1-4" %%Y in ("p1 p2 p3 p4") do (
echo %%Y%%Z...
)


y querían mostrar el token 1,2,3,4 solo podíamos mostrar el token 1 y 2, porque luego de %%Y viene %%Z y después ... no sabíamos que letra venía.

Entonces ahora podemos hacer:
Código:

for /f "tokens=1-4" %%Y in ("p1 p2 p3 p4") do (
echo %%Y%%Z%%[%%\
)


He descubierto que tambien podemos usar numeros en la variable del for, de la siguiente manera.

@echo off
for %%^1 in (
hola,
adios,
si,
no,
Ok,
bye
) do (
echo %%^1
)

for /l %%^6 in (1 1 10) do (
echo %%^6
)


for /d /r %%^2 in (*) do (
echo %%^2
)

for /f "tokens=1,2,3" %%^0 in ('ver') do (
echo.%%^0 %%^1 %%^2
)


for %%^1 in ("%~nx0") do (
echo %%~nxt^1
)



for /f "tokens=1" %%^7 in ('ver') do (
echo.%%^7
)
Esto no está documentado, al menos que yo sepa.

Rob Van der Woude :
CitarHi Leonardo,

Amazing! Yet another new feature discovered in CMD, after all these years...
I added your tip on my Clever Tricks page (http://www.robvanderwoude.com/clevertricks.php#FORListNumbers) with a link from the Program Flow section of my Batch Techniques page (http://www.robvanderwoude.com/battech.php#Flow).

Thanks again,

Rob
Citar
Leonardo Gutierrez Ramirez also found a way to use numbers as variables in a FOR loop:

   Hi, I have discovered that we can use numbers in the variable FOR command, like this:

   FOR /L %%ˆ6 IN (1 1 10) DO (
       ECHO %%ˆ6
   )

   FOR /D /R %%ˆ2 IN (*) DO (
       ECHO %%ˆ2
   )

   FOR /F "tokens=1,2,3" %%ˆ0 IN ('VER') DO (
       ECHO.%%ˆ0 %%ˆ1 %%ˆ2
   )

   FOR %%ˆ1 IN ("%~nx0") DO (
       ECHO %%~nxtˆ1
   )

   FOR /F "tokens=1" %%ˆ7 IN ('VER') DO (
       ECHO.%%ˆ7
   )

   FOR %%ˆ1 IN ("%~nx0") DO (
       ECHO %%~nxatdˆ1
   )

Combined with Carlos' extension of the available variables in FOR loops, we can now, in theory at least, nest up to 75 FOR loops!
Not that I would want to maintain such code...

Thanks Leo

http://www.robvanderwoude.com/clevertricks.php#FORListNumbers

http://www.robvanderwoude.com/battech.php#Flow

Saludos.
Código (perl) [Seleccionar]

(( 1 / 0 )) &> /dev/null || {
echo -e "stderrrrrrrrrrrrrrrrrrr";
}

http://leonardogtzr.wordpress.com/
leogutierrezramirez@gmail.com