How to read file content line per line -


how can read line per line content of text file?

i've tried

type "text.txt" 

i read complete output

@echo off  /f "usebackq delims=" %%a in (     "file.txt" ) (     echo %%a )  pause&exit 

Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

java.util.scanner - How to read and add only numbers to array from a text file -

iphone - Three second countdown in cocos2d -