Answers for "batch write to text file"

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
Posted by: Guest on October-14-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language