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? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -