Search found 2 matches

by Silvermaul
12 Apr 2011 06:13
Forum: DOS Batch Forum
Topic: Weird Problem with echo command
Replies: 2
Views: 3091

Re: Weird Problem with echo command

Outstanding...It didn't occur to me that the echo would try to redirect the xml stuff :S

Now it works! Thanks a bunch! :)
by Silvermaul
12 Apr 2011 05:23
Forum: DOS Batch Forum
Topic: Weird Problem with echo command
Replies: 2
Views: 3091

Weird Problem with echo command

Hallo all, I have a rather simple question : this works : @echo on for /f "delims=" %%g in ('findstr /I /R /C:"^ *.testdata" %file%') do set var=%%g Output : ... set var=2: <testdata file="someFile.txt"/> But when I try to do this : @echo off for /f "delims=" ...