NAME
   ZIPEX - examine zip files

SYNOPSIS
   *zipex file

DESCRIPTION
   zipex lists the contents of a ZIP archive with a display similar to the
   *Ex command. The behavior is to list single-line entries for each object
   in the archive displaying the file load and execution addresses,
   compressed and uncompressed file length, file access permissons and
   type of compression used. See DETAILED DESCRIPTION below.

ARGUMENTS
   file
 	Path of the ZIP archive. If the file specification is a
 	wildcard, only the first matching file is processed.

DETAILED DESCRIPTION
   The default behavior of zipex is to list files in the following
   format:

   ZipEx FFFF08C0 FFFF08D1 000240 57 00:00:00 04/11/1999 5F9BAC00 001204 0

   The first field is the filename. If the file was zipped with a stored
   directory name, that is also displayed as part of the filename.

   The second and third fields are the load and execution addresses, if
   present. The fourth field is the length of the uncompressed file. The
   fifth field is the access permissions, as returned by OSFILE.

   If the load and execution address and the access permissions are not
   present, then they are displayed as '-'s.

   The sixth and seventh fields are the modification time and date of the
   file. Note that because of limitations in the format used to store file
   times, the seconds field is always rounded to the nearest even second.
   If the file is file-typed then there may be a more accurate timestamp
   stored within the load and execution fields.

   The eighth field is the file's CRC, and the ninth field is the
   compressed file size - the actual amount of space within the archive
   that the file occupies.

   Finally, the tenth field indicates the compression method used. These
   are: 0 - stored (no compression), and 8 - deflated.

SEE ALSO
   unzip(1), zip(1), zipcat(1), zipdiff(1), zipinfo(1)

AUTHOR
   J.G.Harston <jgh@mdfs.net>