I have a txt file containing the following lines
jfo3 93jfl
lvls 29fdj
nskd jfuwe
xlkw eklwe
I am trying to read a file line by line and do something with it. Which separator should I use?
The divide that I use here reads each word separately.
@echo off
setlocal EnableDelayedExpansion
for /f "delims=" %%x in (lines.txt) do (
echo %%x
)
source
share