ECHO ..::''''::..
ECHO .;'' ``;.
ECHO :: :: :: ::
ECHO :: :: :: ::
ECHO :: .:' :: :: `:. ::
ECHO :: : : ::
ECHO :: `:. .:' ::
ECHO `;..``::::''..;'
ECHO ``::,,,,::''
Tip: Copy & Paste your ascii art into a file art.txt (Do NOT include the ECHO!)
Then use the "type" command in your batch script to display it.
Example:
@ECHO OFF
TITLE ASCII ART
TYPE art.txt
ECHO DON'T WORRY, BE HAPPY!
pause
exit
follow @benjaminhull_ on instagram
ReplyDeleteHad the same issue. Found this neat trick
ReplyDeleteusing an end of file token (EOF in this case)
it basically reads the lines "as-is" to the screen much like type.
your script stuff here then
cat << "EOF"
ascii art
here until done
EOF
more script stuff here and so on....
nc