Answers for "make file in windows terminal"

1

how to create file in terminal in windows

type nul > filename. txt .
Posted by: Guest on October-05-2021
20

make new file windows cmd

type nul > README.txt
Posted by: Guest on August-01-2020
7

create a file cmd

type NUL > EmptyFile.txt
# also
echo. 2>EmptyFile.txt
copy nul file.txt > nul # also in qid's answer below
REM. > empty.file
fsutil file createnew file.cmd 0 # to create a file on a mapped drive
Posted by: Guest on May-20-2020

Code answers related to "make file in windows terminal"

Browse Popular Code Answers by Language