I need to be able to load the entire contents of a text file and load it into a variable for further processing.
How can I do that?
Here\'s what I di
for /f "delims=" %%i in (count.txt) do set c=%%i echo %c% pause