XCopy 2.0
---------
Copyright (c) Joe Cosentino 1997-2001.

Overview
--------
  A clone of the XCopy command that comes with Microsoft MS-DOS and
  Windows 9x.

Source code
-----------
  The source code is available under the terms of the GNU General Public
  License (copying.txt).  If you want to use it in your programs, the
  program you are writing must be released under the GNU GPL as well.  No
  royalties are expected, although donations are always accepted :-).

  The source was compiled with Borland Turbo C++ 3.0 and NASM 0.98.  If you
  want to compile the sources with other compilers, you may have to tweak
  a couple of files to get it to work.

Making changes
--------------
  The rules of making changes are as follows:
    1) You may not use this program or source code for financial gain.
    2) You must leave the copyright notice intact.
    3) Please document what you have done in the history file.
    4) Don't make things harder than they already are.

Warranties
----------
  This program comes as-is and without warranty of any kind.  The author of
  this software assumes no responsibility pertaining to the use or misuse of
  this software.  By using this software, the operator is understood to be
  agreeing to the terms of the above.

Usage
-----
Copies files and directories.

Syntax: XCOPY source destination [/Y | /-Y] [/A | /M] [/P] [/V] [/W] [/C] [/Q]
                                 [/F] [/L] [/H] [/U] [/V] [/?]
  source      Specifies the location and names of the files you want to
              copy
  destination Specifies the destination of the files you want to copy
  /A          Copies only source files that have their archive attributes
              set
  /M          Copies source files that have their archive attributes set and
              turns off the archive attribute
  /P          Prompts for confirmation about whether you want to create
              each destination file
  /C          Continues copying even if errors occur
  /S          Copies directories and subdirectories
  /F          Displays full source and destination file names while copying
  /L          Displays files that would be copied
  /H          Copies hidden and system files also
  /Q          Does not display file names while copying
  /U          Updates files that already exist in destination
  /V          Verifies each file as it is written to the destination file
              to make sure that the destination files are identical to the
              source files
  /W          Prompts you to press a key before copying
  /?          Displays this help message

