Tutorial by Examples

Most online batch scripts come with a lot of quote issues. Examples and Solutions Example A if %var%==abc echo Test This code works - when the content of %var% does not contains space or other special characters. Now let's assume %var% contains 1 whitespace. Now cmd.exe sees: if ==abc echo...
Spaghetti code means a code snippet that uses many, and often confusing structures. Such as GOTOs, exceptions and inconsistent code. Examples and Solutions Example A @echo off set /a counter=0 :Loop set /a counter=%counter% + 1 echo %counter% if %counter% equ 10 goto :exit goto :Loop ...

Page 1 of 1