I am new to batch scripting.I was going through a tutorial and then tried writing a code.I was looking for a better option and i found the below
for /f usebackq^ tokens^=2^ delims^=^" %%A in ("final.txt") do echo %%A
Can someone please explain the role of ^
in usebackq , ^=2^
in tokens and ^=^"
in delims?