L
LB636
I can't find where to report about this, but...When I use ")" inside an "echo" command within a batch file, it is considered as an ending of a loop instead of being ignoredecho off for /l %%t in (1, 1, 3) do ( echo testing %%t echo this comment is printed almost fine, except the last character (extra text) echo here is another result of the bug, as this comment is printed just once) timeout /t 20This will print:testing 1 this comment is printed almost fine, except the last character (extra texttesting 2 this comment is printed almost fine, except the last character (extra texttesting 3
Continue reading...
Continue reading...