make file on cmd windows code example
Example 1: make new file windows cmd
type nul > README.txt
Example 2: create file and write to it cmd
echo some-text > filename.txt
Example 3: make a file windows cmd
nul > FILENAME.EXTENSION
type nul > README.txt
echo some-text > filename.txt
nul > FILENAME.EXTENSION