Skip to content

Instantly share code, notes, and snippets.

@SZanlongo
Created October 13, 2014 12:06
Show Gist options
  • Save SZanlongo/0bc297eb2ed29572a663 to your computer and use it in GitHub Desktop.
Save SZanlongo/0bc297eb2ed29572a663 to your computer and use it in GitHub Desktop.
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"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment