the essence of task in description, far have code reading file. cycle can not put loop in batch
@echo off /f "tokens=* delims=" %%x in (text1.txt) echo %%x pause
it's simpler that:
@echo off %%a in (*.txt) echo %%a pause
the essence of task in description, far have code reading file. cycle can not put loop in batch
@echo off /f "tokens=* delims=" %%x in (text1.txt) echo %%x pause
it's simpler that:
@echo off %%a in (*.txt) echo %%a pause
Comments
Post a Comment