Let's say there's a text file that contains:
L1
L2
L3
I want to have a batch file that will read each line from that file, and then make them into variables. For example, these will be the variables:
line1 = L1
line2 = L2
line3 = L3
How can this be done with a batch file?
The Windows command processor is designed for running commands and applications. It is not designed for editing text files. Really every scripting or programming language would be better for this task than a batch file executed by Windows command processor
cmd.exe
.For your simple text file example with using a character encoding with one byte per character or UTF-8 a simple batch file can be used:
But this batch file fails to process a line correct which
;
,!
.A better but slower batch file would be:
See my answer on How to read and print contents of text file line by line? why the FOR loop is much more complex to process text files better.
A text file with UTF-16 or UTF-32 character encoding cannot be processed with those two batch files.
For understanding the used commands and how they work, open a command prompt window, execute there the following commands, and read entirely all help pages displayed for each command very carefully.
del /?
echo /?
endlocal /?
findstr /?
for /?
if /?
move /?
set /?
setlocal /?
See also the Microsoft article about Using command redirection operators.