I'd like to know what does ^< character combination means in my case. I already know that ^< helps to interpret < as an ordinary character. But what does it mean here:
for /F %%i in ('^< !FILE! find /C /V ""') do set count=%%i
I suppose this code counts lines in a particular file but I'm not sure about these characters.
Thanks, I appreciate all your help!