Tar and Gzip
============

Many of the files from ftp.python.org are in tar-gzip format and
end in *.tgz.  A tar and gzip for Windows NT and 95 is included here.
To run it on Windows 3.1, you will need the Win32s package from
Microsoft.  You may be interested in other GNU utilities from
ftp.cc.utexas.edu/microlib/nt/gnu.

If you get a tar-gzip file, first uncompress it with gzip:
    gzip -d wpycomon.tgz.
This will create the tar file wpycomon.tar.  Then use tar to
list the files or unpack them into the current directory with
all subdirectories included.

List the files in the tar archive "wpycomon.tar":
    tar tvf wpycomon.tar
Extract the files in the tar archive "wpycomon.tar" into the current directory:
    tar xf  wpycomon.tar
