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
You can use:
set content= for /f "delims=" %%i in ('type text.txt') do set content=!content! %%i