Search found 2 matches

by joev68
14 Sep 2007 07:15
Forum: DOS Batch Forum
Topic: Variables acting very wierd - New to batch programming
Replies: 2
Views: 8515

Thanks, DosITHelp

Thats work well. Thank you so much.
by joev68
11 Sep 2007 13:46
Forum: DOS Batch Forum
Topic: Variables acting very wierd - New to batch programming
Replies: 2
Views: 8515

Variables acting very wierd - New to batch programming

Simple code -----1.BAT------- set outdir=%1 FOR /D %%F IN (%outdir%) ( set dir1=%%F echo %dir1% ) --------------------- I have c:\new c:\new\1 <DIR> c:\new\2 <DIR> c:\new\3 <DIR> when I execute it like this C:\> 1.BAT \new\*.* its assigning set dir1=\new\1 echo \new\3 set dir1=\new\2 echo \new\3 set...