Search found 1 match

by Werseree
26 Jul 2014 17:27
Forum: DOS Batch Forum
Topic: For loop local variable
Replies: 1
Views: 1267

For loop local variable

I'm hoping someone can help me understand this weirdness. If I do... for /f "delims=" %%i in (some_file.txt) do ( echo %%i ) Then each line of the file is echoed out. OK, so far so good. But if I make this ever so small change... for /f "delims=" %%i in (some_file.txt) do ( set &...