I have a text file that contains a list of filenames, minus the extension, that I need to create. I want to run a quick batch file command or VBS script that will iterate through the list and then create a file based on the name.
The text file looks something like this:
PRXI0000466
PRXI0000564
PRXI0000636
PRXI0000681
PRXI0001092
So I want to loop through each line, then do an "echo . > %file%.txt
" (assuming %file%
contains the line from the text file).
Can anyone show me a quick way to do this?