how to create a new file using cmd code example
Example 1: how to create empty file cmd windows
copy NUL test.txt
Example 2: make new file windows cmd
type nul > README.txt
Example 3: create file and write to it cmd
echo some-text > filename.txt