windows - Create a batch file that reads all the text files contained in current directory -


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

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

android - How to prevent keyboard from closing when bottom dialog is open? -