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
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
for /f "delims=" %%a in (list.txt) do break>%%a.txt