batch file write to text file code example

Example 1: batch write to text file

echo hello>test.txt

rem a single '>' will make a new file if one does not exist, and will overwrite
rem a previous file with the same line. to append to the same file, see below

echo hi>>test.txt

test.txt:
::hello
::hi

Example 2: batch write file

REM # | NOTE: this is for batch files (windows cmd)

REM # | EXAMPLE
echo This is the text you want in the actual file > NewFile.txt

REM # | SYNTAX
REM # | echo [insert-text] > [file-name]