touch linux command to windows code example
Example 1: touch commend in cmd
// create files using command in command prompt ..
echo > sample.txt
Example 2: touch command not recognized in windows
type nul > your_file.txt
// create files using command in command prompt ..
echo > sample.txt
type nul > your_file.txt