I am new to batch scripting and wonder if anyone would help me understand the differences below:
Differences between these 3 lines:
Set "File=Test.txt"
Set File="Test.txt"
Set File=Test.txt
Differences between these 3 lines:
Set /A "Start=3"
Set Start=3
Call Set /A "Start=3"
Difference between these 2 lines:
SETLOCAL EnableDelayedExpansion
@SETLOCAL EnableDelayedExpansion
What does this line do?
break > %outfile%
Thank you for your help.
I have tried writing basic scripts and trying the minor differences but didn't see much change. Just wonder why the different way of writing it.