I am making a .bat file, and I would like it to write ASCII art into a text file.
.bat
I was able to find the command to append a new line to the file when e
Use the following:
echo (text here) >> (name here).txt
Ex. echo my name is jeff >> test.txt
echo my name is jeff >> test.txt
test.txt
my name is jeff
You can use it in a script too.