I am making a .bat file, and I would like it to write ASCII art into a text file.
I was able to find the command to append a new line to the file when e
You can easily append to the end of a file, by using the redirection char twice (>>).
This will copy source.txt to destination.txt, overwriting destination in the process:
type source.txt > destination.txt
This will copy source.txt to destination.txt, appending to destination in the process:
type source.txt >> destination.txt