January
5
CMD: A quick Windows command line to create a bunch of files
One liner for creating several files in a directory:
Open a command prompt in Windows.
Type:
FOR /L %A IN (1,1,10000) DO echo importantfile%A.txt > %A.txt
By: A. Verma