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
Maybe this is what you want?
echo foo > test.txt echo. >> test.txt echo bar >> test.txt
results in the following within test.txt:
foo bar
foo
bar