how to create a text file using the windows commandline [duplicate]

Possible Duplicate:
How do you create an empty file from the command line in Windows

Is there any command, using that we can create a text file or any other format. To make a folder we use md command, but to creat a file.

3

1 Answer

type nul >> name.ext will create an empty name.ext file .

2

You Might Also Like