Windows 11 Where can I report about a bug of an "echo" command inside a batch file, having ")" be considered as an ending to a loop?

  • Thread starter Thread starter LB636
  • Start date Start date
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 ignored:@echo 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...
 
Back
Top