0

I would like to create multiple empty text files each with a different name from a list of 70+ names, all within the same folder.

Ex: cat, dog, computer, tree.

To output to:

cat.txt

dog.txt

computer.txt

tree.txt

Oana
  • 135
  • 1
  • 6
  • 1
    this is not a coding service. write some code, test it out. if it does not work, we will help you. – Nicolas Jun 29 '17 at 17:27
  • Sorry about that, I only have experience with front end web developement and after a long Google search I still couldn't figure out how to do it. – Oana Jun 29 '17 at 17:35

1 Answers1

1
for /f "delims=" %%a in (list.txt) do break>%%a.txt
Stephan
  • 53,940
  • 10
  • 58
  • 91