Showing posts with label ascii. Show all posts
Showing posts with label ascii. Show all posts

Tuesday, December 16, 2008

ASCII ART Examples

Rather then copying thousands of ASCII Arts from all over the net here,
I will just post a few good links to help you get started.

Check out the "How To Example" to see how to include ASCII ART in your batch script with ease.

Links:

Just one for now, more too come!

http://chris.com/ascii/

BATCH ASCII ART - How To Example

Please note the will look better when run in a command window or MSDOS.


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