CLIP.EXE
--------

Clip.exe is a console utility that is used to copy text from the
stream stdin to the windows clipboard. The data can then be pasted
directly into a Windows application such as Microsoft Word,
Excel, etc.

This utility is also useful in a systems management and development
environment.

Examples:
---------
dir | clip
This places a copy of the current directory listing into the Windows
clipboard.

clip < readme.txt
This would place a copy of the text from readme.txt into the Windows
clipboard.

awk -f gencode.awk input.txt | clip
This would place the output of the awk program gencode.awk into
the Windows clipboard.

