Is there a way of creating multiple files in Windows by using its own command prompt (cmd.exe) or terminal emulator if you call it, just like the below simple one liner would do in any Unix-like system? Note that I'm talking about a situation where I can't use any alternative terminal emulators like PowerShell or Win 32 ports of GNU utils.
for i in `seq 10` ; do `touch $i.txt`; done