Re: [H] for /f do looping through string

2007-09-13 Thread Lubomír Čabla
This line works: *for %%f in (test test1 test2) do echo %%f* Syntax for /f is designed for file handling. So I don't know what do you exactly want to do. On 9/12/07, Thane Sherrington [EMAIL PROTECTED] wrote: Shouldn't this: for /f delims= %f in (test test1 test2) do echo %f give the

[H] for /f do looping through string

2007-09-12 Thread Thane Sherrington
Shouldn't this: for /f delims= %f in (test test1 test2) do echo %f give the output: test test1 test2 ? When I run it, I just get the output test What am I doing wrong? T