I\'m trying to read text lines from a file, and increment a counter so I can eventually simulate an array in DOS.
I\'d like to be able to store the lines of text in
set TEXT_T="myfile.txt" set /a c=1 FOR /F "tokens=1 usebackq" %%i in (%TEXT_T%) do ( set /a c+=1 set OUTPUT_FILE_NAME=output_%c%.txt echo Output file is %OUTPUT_FILE_NAME% echo %%i, %c% )