Takes in a text file and generates folders based on each line of text.
@echo off for /f "tokens=*" %%a in (file.txt) do ( mkdir "%%a" )