Hello,
Can anyone help me to read a first word of First line from abc.text into a variable in Batch Scripting ?
Example :
For /f “line=1 word=1” %a in (abc.txt) do Echo %a
Solved To Read a First Word of First Line From Abc.text Into a Var
Share
for /F “tokens=1” %%a in (“%var%”) do echo.%%a