touch cmd code example

Example 1: command touch in window

type nul > your_file.txt

Example 2: touch command

touch test.txt

// this creates a file called test.txt

Example 3: touch commend in cmd

// create files using command in command prompt .. 

echo > sample.txt

Example 4: touch command in windows

ECHO text>file1.txt

Example 5: touch command not recognized in windows

type nul > your_file.txt

Example 6: touch command in windows

type nul > .gitignore ---This creates empty file and works on windows 10.

Tags:

Misc Example