TEE v2.0.2
Originally by Jim Hall
Rewritten by Alexis Malozemoff with heavy inspiration from the
GNU coreutils-6.9 implementation

ABOUT

TEE reads data from standard input and writes to standard output as well 
as any files specified by the user.

EXAMPLES

To print "example" to standard output as well as log.txt:
	ECHO example | TEE log.txt

To append "example" to log.txt instead:
	ECHO example | TEE /A log.txt

BASIC INSTALLATION

TEE comes with two default builds.  TEE.EXE is TEE build with kitten support.
_TEE.EXE is built without kitten.

To compile TEE you need the OpenWatcom C implementation.
Simply type:
	wmake

This will compile the default installation of TEE.
You can then copy TEE.EXE to your BIN directory.
Additionally, if you compiled with KITTEN support, move the necessary
help file in the HELP directory to wherever you store your NLS files.

ADDITIONAL INSTALLATION OPTIONS

If you'd like internationalization through KITTEN, type:
	wmake kitten=yes

To delete all build files:
	wmake clean

To delete all build files and any executables created:
	wmake cleanall

To compile a zip of the directory:
	wmake dist

