Search found 3 matches

by ThinAir
21 Jun 2012 11:30
Forum: DOS Batch Forum
Topic: Fun (or perhaps not) with COPY and wild cards
Replies: 8
Views: 8390

Re: Fun (or perhaps not) with COPY and wild cards

How would enabledelayedexpansion effect these copies, particularily the fiirst?
by ThinAir
01 Jun 2012 11:26
Forum: DOS Batch Forum
Topic: For /F and set (Solved)
Replies: 3
Views: 3893

Re: For /F and set

Thank you Aacini.
by ThinAir
31 May 2012 16:41
Forum: DOS Batch Forum
Topic: For /F and set (Solved)
Replies: 3
Views: 3893

For /F and set (Solved)

Windows XP script. RESSTRING is a string RESLIST is a file Within a script I have: for /f "delims=" %%a in ('findstr "%RESSTRING%" %RESLIST%') do @set RESLINE=%%a echo %RESLINE% The set command doesn't work as I expect it to. echo %RESLINE% is empty. echo %%a returns the expected...