.\" Info-ZIP grants permission to any individual or institution to use, copy, .\" or redistribute this software, so long as: (1) all of the original files .\" are included; (2) it is not sold for profit; and (3) this notice is re- .\" tained. .\" .\" unzip.1 by Greg Roelofs, Fulvio Marino, Jim van Zandt and others. .\" .\" ========================================================================= .\" define .Y macro (for user-command examples; normal Courier font): .de Y .ft CW .in +4n .nf \&\\$1 .ft .in .fi .. .\" ========================================================================= .TH UNZIP 1L "28 Aug 94 (v5.12)" .SH NAME unzip \- list, test and extract compressed files in a ZIP archive .PD .\" ========================================================================= .SH SYNOPSIS \fBunzip\fP [\fB\-Z\fP] [\fB\-cflptuvz\fP[\fBabjnoqsCLV$\fP]] \fIfile\fP[\fI.zip\fP] [\fIfile(s)\fP\ .\|.\|.] [\fB\-x\fP\ \fIxfile(s)\fP\ .\|.\|.] [\fB\-d\fP\ \fIexdir\fP] .PD .\" ========================================================================= .SH DESCRIPTION \fIunzip\fP will list, test, or extract files from a ZIP archive, commonly found on MS-DOS systems. The default behavior (with no options) is to extract into the current directory (and subdirectories below it) all files from the specified ZIP archive. A companion program, \fIzip\fP(1L), creates ZIP archives; both programs are compatible with archives created by PKWARE's \fIPKZIP\fP and \fIPKUNZIP\fP for MS-DOS, but in many cases the program options or default behaviors differ. .PD .\" ========================================================================= .SH ARGUMENTS .TP .IR file [ .zip ] Path of the ZIP archive(s). If the file specification is a wildcard, each matching file is processed in an order determined by the operating system (or file system). Only the filename can be a wildcard; the path itself cannot. Wildcard expressions are similar to Unix \fIegrep\fP(1) (regular) expressions and may contain: .RS .IP * matches a sequence of 0 or more characters .IP ? matches exactly 1 character .IP [.\|.\|.] matches any single character found inside the brackets; ranges are specified by a beginning character, a hyphen, and an ending character. If an exclamation point or a caret (`!' or `^') follows the left bracket, then the range of characters within the brackets is complemented (that is, anything \fIexcept\fP the characters inside the brackets is considered a match). .RE .IP (Be sure to quote any character which might otherwise be interpreted or modified by the operating system, particularly under Unix and VMS.) If no matches are found, the specification is assumed to be a literal filename; and if that also fails, the suffix \fC.zip\fP is appended. Note that self-extracting ZIP files are supported, as with any other ZIP archive; just specify the \fC.exe\fP suffix (if any) explicitly. .IP [\fIfile(s)\fP] An optional list of archive members to be processed, separated by spaces. (VMS versions compiled with VMSCLI defined must delimit files with commas instead. See \fB\-v\fP in \fBOPTIONS\fP below.) Regular expressions (wildcards) may be used to match multiple members; see above. Again, be sure to quote expressions that would otherwise be expanded or modified by the operating system. .IP [\fB\-x\fP\ \fIxfile(s)\fP] An optional list of archive members to be excluded from processing. Since wildcard characters match directory separators (`/'), this option may be used to exclude any files which are in subdirectories. For example, ``\fCunzip foo *.[ch] -x */*\fR'' would extract all C source files in the main directory, but none in any subdirectories. Without the \fB\-x\fP option, all C source files in all directories within the zipfile would be extracted. .IP [\fB\-d\fP\ \fIexdir\fP] An optional directory to which to extract files. By default, all files and subdirectories are recreated in the current directory; the \fB\-d\fP option allows extraction in an arbitrary directory (always assuming one has permission to write to the directory). This option need not appear at the end of the command line; it is also accepted immediately after the zipfile specification, or between the \fIfile(s)\fP and the \fB\-x\fP option. The option and directory may be concatenated without any white space between them, but note that this may cause normal shell behavior to be suppressed. In particular, ``\fC\-d\ ~\fR'' (tilde) is expanded by Unix C shells into the name of the user's home directory, but ``\fC\-d~\fR'' is treated as a literal subdirectory ``\fB~\fP'' of the current directory. .\" ========================================================================= .SH OPTIONS Note that, in order to support obsolescent hardware, \fIunzip\fP's usage screen is limited to 22 or 23 lines and should therefore be considered a reminder of the basic \fIunzip\fP syntax rather than an exhaustive list of all possible flags. .TP .B \-Z \fIzipinfo\fP(1L) mode. If the first option on the command line is \fB\-Z\fP, the remaining options are taken to be \fIzipinfo\fP(1L) options. See the appropriate manual page for a description of these options. .TP .B \-c extract files to stdout/screen (``CRT''). This option is similar to the \fB\-p\fP option except that the name of each file is printed as it is extracted, the \fB\-a\fP option is allowed, and ASCII-EBCDIC conversion is automatically performed if appropriate. This option is not listed in the \fIunzip\fP usage screen. .TP .B \-f freshen existing files, i.e., extract only those files which already exist on disk and which are newer than the disk copies. By default \fIunzip\fP queries before overwriting, but the \fB\-o\fP option may be used to suppress the queries. Note that under many operating systems, the TZ (timezone) environment variable must be set correctly in order for \fB\-f\fP and \fB\-u\fP to work properly (under Unix the variable is usually set automatically). The reasons for this are somewhat subtle but have to do with the differences between DOS-format file times (always local time) and Unix-format times (always in GMT) and the necessity to compare the two. A typical TZ value is ``PST8PDT'' (US Pacific time with automatic adjustment for Daylight Savings Time or ``summer time''). .TP .B \-l list archive files (short format). The names, uncompressed file sizes and modification dates and times of the specified files are printed, along with totals for all files specified. In addition, the zipfile comment and individual file comments (if any) are displayed. If a file was archived from a single-case file system (for example, the old MS-DOS FAT file system) and the \fB\-L\fP option was given, the filename is converted to lowercase and is prefixed with a caret (^). .TP .B \-p extract files to pipe (stdout). Nothing but the file data is sent to stdout, and the files are always extracted in binary format, just as they are stored (no conversions). .TP .B \-t test archive files. This option extracts each specified file in memory and compares the CRC (cyclic redundancy check, an enhanced checksum) of the expanded file with the original file's stored CRC value. .TP .B \-u update existing files and create new ones if needed. This option performs the same function as the \fB\-f\fP option, extracting (with query) files which are newer than those with the same name on disk, and in addition it extracts those files which do not already exist on disk. See \fB\-f\fP above for information on setting the timezone properly. .TP .B \-v be verbose or print diagnostic version info. This option has evolved and now behaves as both an option and a modifier. As an option it has two purposes: when a zipfile is specified with no other options, \fB\-v\fP lists archive files verbosely, adding to the \fB\-l\fP info the compression method, compressed size, compression ratio and 32-bit CRC. When no zipfile is specified (that is, the complete command is simply ``\fCunzip -v\fR''), a diagnostic screen is printed. In addition to the normal header with release date and version, \fIunzip\fP lists the home Info-ZIP ftp site and where to find a list of other ftp and non-ftp sites; the target operating system for which it was compiled, as well as (possibly) the hardware on which it was compiled, the compiler and version used, and the compilation date; any special compilation options which might affect the program's operation (see also \fBDECRYPTION\fP below); and any options stored in environment variables which might do the same (see \fBENVIRONMENT OPTIONS\fP below). As a modifier it works in conjunction with other options (e.g., \fB\-t\fP) to produce more verbose or debugging output; this is not yet fully implemented but will be in future releases. .TP .B \-z display only the archive comment. .PD .\" ========================================================================= .SH MODIFIERS .TP .B \-a convert text files. Ordinarily all files are extracted exactly as they are stored (as ``binary'' files). The \fB\-a\fP option causes files identified by \fIzip\fP as text files (those with the `t' label in \fIzipinfo\fP listings, rather than `b') to be automatically extracted as such, converting line endings, end-of-file characters and the character set itself as necessary. (For example, Unix files use line feeds (LFs) for end-of-line (EOL) and have no end-of-file (EOF) marker; Macintoshes use carriage returns (CRs) for EOLs; and most PC operating systems use CR+LF for EOLs and control-Z for EOF. In addition, IBM mainframes and the Michigan Terminal System use EBCDIC rather than the more common ASCII character set, and NT supports Unicode.) Note that \fIzip\fP's identification of text files is by no means perfect; some ``text'' files may actually be binary and vice versa. \fIunzip\fP therefore prints ``\fC[text]\fR'' or ``\fC[binary]\fR'' as a visual check for each file it extracts when using the \fB\-a\fP option. The \fB\-aa\fP option forces all files to be extracted as text, regardless of the supposed file type. .TP .B \-b treat all files as binary (no text conversions). This is a shortcut for \fB\-\-\-a\fP. .TP .B \-C match filenames case-insensitively. \fIunzip\fP's philosophy is ``you get what you ask for'' (this is also responsible for the \fB\-L\fP/\fB\-U\fP change; see the relevant options below). Because some filesystems are fully case-sensitive (notably those under the Unix operating system) and because both ZIP archives and \fIunzip\fP itself are portable across platforms, \fIunzip\fP's default behavior is to match both wildcard and literal filenames case-sensitively. That is, specifying ``\fCmakefile\fR'' on the command line will \fIonly\fP match ``makefile'' in the archive, not ``Makefile'' or ``MAKEFILE'' (and similarly for wildcard specifications). Since this does not correspond to the behavior of many other operating/file systems (for example, OS/2 HPFS which preserves mixed case but is not sensitive to it), the \fB\-C\fP option may be used to force all filename matches to be case-insensitive. In the example above, all three files would then match ``\fCmakefile\fR'' (or ``\fCmake*\fR'', or similar). The \fB\-C\fP option affects files in both the normal file list and the excluded-file list (xlist). .TP .B \-j junk paths. The archive's directory structure is not recreated; all files are deposited in the extraction directory (by default, the current one). .TP .B \-L convert to lowercase any filename originating on an uppercase-only operating system or filesystem. (This was \fIunzip\fP's default behavior in releases prior to 5.11; the new default behavior is identical to the old behavior with the \fB\-U\fP option, which is now obsolete and will be removed in a future release.) Depending on the archiver, files archived under single-case filesystems (VMS, old MS-DOS FAT, etc.) may be stored as all-uppercase names; this can be ugly or inconvenient when extracting to a case-preserving filesystem such as OS/2 HPFS or a case-sensitive one such as under Unix. By default \fIunzip\fP lists and extracts such filenames exactly as they're stored (excepting truncation, conversion of unsupported characters, etc.); this option causes the names of all files from certain systems to be converted to lowercase. .TP .B \-n never overwrite existing files. If a file already exists, skip the extraction of that file without prompting. By default \fIunzip\fP queries before extracting any file which already exists; the user may choose to overwrite only the current file, overwrite all files, skip extraction of the current file, skip extraction of all existing files, or rename the current file. .TP .B \-o overwrite existing files without prompting. This is a dangerous option, so use it with care. (It is often used with \fB\-f\fP, however.) .TP .B \-q perform operations quietly (\fB\-qq\fP = even quieter). Ordinarily \fIunzip\fP prints the names of the files it's extracting or testing, the extraction methods, any file or zipfile comments which may be stored in the archive, and possibly a summary when finished with each archive. The \fB\-q\fP[\fBq\fP] options suppress the printing of some or all of these messages. .TP .B \-s [OS/2, NT, MS-DOS] convert spaces in filenames to underscores. Since all PC operating systems allow spaces in filenames, \fIunzip\fP by default extracts filenames with spaces intact (e.g., ``\fCEA\ DATA.\ SF\fR''). This can be awkward, however, since MS-DOS in particular does not gracefully support spaces in filenames. Conversion of spaces to underscores can eliminate the awkwardness in some cases. .TP .B \-U (obsolete; to be removed in a future release) leave filenames uppercase if created under MS-DOS, VMS, etc. See \fB\-L\fP above. .TP .B \-V retain (VMS) file version numbers. VMS files can be stored with a version number, in the format \fCfile.ext;##\fP. By default the ``\fC;##\fR'' version numbers are stripped, but this option allows them to be retained. (On filesystems which limit filenames to particularly short lengths, the version numbers may be truncated or stripped regardless of this option.) .TP .B \-X [VMS] restore owner/protection info (may require system privileges). Ordinary file attributes are always restored, but this option allows UICs to be restored as well. [The next version of \fIunzip\fP will support Unix UID/GID info as well, and possibly NT permissions.] .TP .B \-$ [MS-DOS, OS/2, NT, Amiga] restore the volume label if the extraction medium is removable (e.g., a diskette). Doubling the option (\fB\-$$\fP) allows fixed media (hard disks) to be labelled as well. By default, volume labels are ignored. .PD .\" ========================================================================= .SH ENVIRONMENT OPTIONS \fIunzip\fP's default behavior may be modified via options placed in an environment variable. This can be done with any option, but it is probably most useful with the \fB\-a\fP, \fB\-L\fP, \fB\-C\fP, \fB\-q\fP, \fB\-o\fP, or \fB\-n\fP modifiers: make \fIunzip\fP auto-convert text files by default, make it convert filenames from uppercase systems to lowercase, make it match names case-insensitively, make it quieter, or make it always overwrite or never overwrite files as it extracts them. For example, to make \fIunzip\fP act as quietly as possible, only reporting errors, one would use one of the following commands: .LP .DT .ft CW .in +4n .ta \w'UNZIP=\-qq; export UNZIP'u+4n .in .ft .PD 0 .Y "UNZIP=\-qq; export UNZIP\t\fRUnix Bourne shell" .Y "setenv UNZIP \-qq\t\fRUnix C shell" .Y "set UNZIP=\-qq\t\fROS/2 or MS-DOS" .Y "define UNZIP_OPTS ""\-qq""\t\fRVMS (quotes for \fIlowercase\fP)" .PD .LP Environment options are, in effect, considered to be just like any other command-line options, except that they are effectively the first options on the command line. To override an environment option, one may use the ``minus operator'' to remove it. For instance, to override one of the quiet-flags in the example above, use the command .LP .Y "unzip \-\-q[\fIother options\fC] zipfile" .LP The first hyphen is the normal switch character, and the second is a minus sign, acting on the q option. Thus the effect here is to cancel one quantum of quietness. To cancel both quiet flags, two (or more) minuses may be used: .LP .PD 0 .Y "unzip \-t\-\-q zipfile" .Y "unzip \-\-\-qt zipfile" .PD .LP (the two are equivalent). This may seem awkward or confusing, but it is reasonably intuitive: just ignore the first hyphen and go from there. It is also consistent with the behavior of Unix \fInice\fP(1). .LP As suggested by the examples above, the default variable names are UNZIP_OPTS for VMS (where the symbol used to install \fIunzip\fP as a foreign command would otherwise be confused with the environment variable), and UNZIP for all other operating systems. For compatibility with \fIzip\fP(1L), UNZIPOPT is also accepted (don't ask). If both UNZIP and UNZIPOPT are defined, however, UNZIP takes precedence. \fIunzip\fP's diagnostic option (\fB\-v\fP with no zipfile name) can be used to check the values of all four possible \fIunzip\fP and \fIzipinfo\fP environment variables. .LP The timezone variable (TZ) should be set according to the local timezone in order for the \fB\-f\fP and \fB\-u\fP to operate correctly. See the description of \fB\-f\fP above for details. This variable may also be necessary in order for timestamps on extracted files to be set correctly. .PD .\" ========================================================================= .SH DECRYPTION Encrypted archives are fully supported by Info-ZIP software, but due to United States export restrictions, the encryption and decryption sources are not packaged with the regular \fIunzip\fP and \fIzip\fP distributions. Since the crypt sources were written by Europeans, however, they are freely available at sites throughout the world; see the file ``Where'' in any Info-ZIP source or binary distribution for locations both inside and outside the US. .LP Because of the separate distribution, not all compiled versions of \fIunzip\fP support decryption. To check a version for crypt support, either attempt to test or extract an encrypted archive, or else check \fIunzip\fP's diagnostic screen (see the \fB\-v\fP option above) for ``\fC[decryption]\fR'' as one of the special compilation options. .LP There are no runtime options for decryption; if a zipfile member is encrypted, \fIunzip\fP will prompt for the password without echoing what is typed. \fIunzip\fP continues to use the same password as long as it appears to be valid; it does this by testing a 12-byte header. The correct password will always check out against the header, but there is a 1-in-256 chance that an incorrect password will as well. (This is a security feature of the PKWARE zipfile format; it helps prevent brute-force attacks which might otherwise gain a large speed advantage by testing only the header.) In the case that an incorrect password is given but it passes the header test anyway, either an incorrect CRC will be generated for the extracted data or else \fIunzip\fP will fail during the extraction because the ``decrypted'' bytes do not constitute a valid compressed data stream. .LP If the first password fails the header check on some file, \fIunzip\fP will prompt for another password, and so on until all files are extracted. If a password is not known, entering a null password (that is, just a carriage return) is taken as a signal to skip all further prompting. Only unencrypted files in the archive(s) will thereafter be extracted. (Actually that's not quite true; older versions of \fIzip\fP(1L) and \fIzipcloak\fP(1L) allowed null passwords, so \fIunzip\fP checks each encrypted file to see if the null password works. This may result in ``false positives'' and extraction errors, as noted above.) .LP Note that there is presently no way to avoid interactive decryption. This is another security feature: plaintext passwords given on the command line or stored in files constitute a risk because they may be seen by others. Future releases may (under protest, with great disapproval) support such shenanigans. .PD .\" ========================================================================= .SH EXAMPLES To use \fIunzip\fP to extract all members of the archive \fIletters.zip\fP into the current directory and subdirectories below it, creating any subdirectories as necessary: .LP .Y "unzip letters" .LP To extract all members of \fIletters.zip\fP into the current directory only: .LP .Y "unzip -j letters" .LP To test \fIletters.zip\fP, printing only a summary message indicating whether the archive is OK or not: .LP .Y "unzip -tq letters" .LP To test \fIall\fP zipfiles in the current directory, printing only the summaries: .LP .Y "unzip -tq \e*.zip" .LP (The backslash before the asterisk is only required if the shell expands wildcards, as in Unix; double quotes could have been used instead, as in the source examples below.)\ \ To extract to standard output all members of \fIletters.zip\fP whose names end in \fI.tex\fP, auto-converting to the local end-of-line convention and piping the output into \fImore\fP(1): .LP .Y "unzip \-ca letters \e*.tex | more" .LP To extract the binary file \fIpaper1.dvi\fP to standard output and pipe it to a printing program: .LP .Y "unzip \-p articles paper1.dvi | dvips" .LP To extract all FORTRAN and C source files--*.f, *.c, *.h, and Makefile--into the /tmp directory: .LP .Y "unzip source.zip ""*.[fch]"" Makefile -d /tmp" .LP (the double quotes are necessary only in Unix and only if globbing is turned on). To extract all FORTRAN and C source files, regardless of case (e.g., both *.c and *.C, and any makefile, Makefile, MAKEFILE or similar): .LP .Y "unzip \-C source.zip ""*.[fch]"" makefile -d /tmp" .LP To extract any such files but convert any uppercase MS-DOS or VMS names to lowercase and convert the line-endings of all of the files to the local standard (without respect to any files which might be marked ``binary''): .LP .Y "unzip \-aaCL source.zip ""*.[fch]"" makefile -d /tmp" .LP To extract only newer versions of the files already in the current directory, without querying (NOTE: be careful of unzipping in one timezone a zipfile created in another--ZIP archives to date contain no timezone information, and a ``newer'' file from an eastern timezone may, in fact, be older): .LP .Y "unzip \-fo sources" .LP To extract newer versions of the files already in the current directory and to create any files not already there (same caveat as previous example): .LP .Y "unzip \-uo sources" .LP To display a diagnostic screen showing which \fIunzip\fP and \fIzipinfo\fP options are stored in environment variables, whether decryption support was compiled in, the compiler with which \fIunzip\fP was compiled, etc.: .LP .Y "unzip \-v" .LP In the last five examples, assume that UNZIP or UNZIP_OPTS is set to -q. To do a singly quiet listing: .LP .Y "unzip \-l file.zip" .LP To do a doubly quiet listing: .LP .Y "unzip \-ql file.zip" .LP (Note that the ``\fC.zip\fR'' is generally not necessary.) To do a standard listing: .LP .PD 0 .Y "unzip \-\-ql file.zip" .LP or .Y "unzip \-l\-q file.zip" .LP or .Y "unzip \-l\-\-q file.zip\t\fR(extra minuses don't hurt)" .PD .\" ========================================================================= .SH TIPS The current maintainer, being a lazy sort, finds it very useful to define a pair of aliases: \fCtt\fP for ``\fCunzip \-tq\fR'' and \fCii\fP for ``\fCunzip \-Z\fR'' (or ``\fCzipinfo\fR''). One may then simply type ``\fCtt zipfile\fR'' to test an archive, something which is worth making a habit of doing. With luck \fIunzip\fP will report ``\fCNo errors detected in zipfile.zip\fP,'' after which one may breathe a sigh of relief. .LP The maintainer also finds it useful to set the UNZIP environment variable to ``\fC\-aL\fR'' and is tempted to add ``\fC\-C\fR'' as well. His ZIPINFO variable is set to ``\fC\-z\fR''. .PD .\" ========================================================================= .SH DIAGNOSTICS The exit status (or error level) approximates the exit codes defined by PKWARE and takes on the following values, except under VMS: .RS .IP 0 normal; no errors or warnings detected. .IP 1 one or more warning errors were encountered, but processing completed successfully anyway. This includes zipfiles where one or more files was skipped due to unsupported compression method or encryption with an unknown password. .IP 2 a generic error in the zipfile format was detected. Processing may have completed successfully anyway; some broken zipfiles created by other archivers have simple work-arounds. .IP 3 a severe error in the zipfile format was detected. Processing probably failed immediately. .IP 4-8 \fIunzip\fP was unable to allocate memory for one or more buffers. .IP 9 the specified zipfiles were not found. .IP 10 invalid options were specified on the command line. .IP 11 no matching files were found. .IP 50 the disk is (or was) full during extraction. .IP 51 the end of the ZIP archive was encountered prematurely. .RE .LP VMS interprets standard Unix (or PC) return values as other, scarier-looking things, so by default \fIunzip\fP always returns 0 (which reportedly gets converted into a VMS status of 1--i.e., success). There are two compilation options available to modify or expand upon this behavior: defining RETURN_CODES results in a human-readable explanation of what the real error status was (but still with a faked ``success'' exit value), while defining RETURN_SEVERITY causes \fIunzip\fP to exit with a ``real'' VMS status. The latter behavior will become the default in future versions unless it is found to conflict with officially defined VMS codes. The current mapping is as follows: 1 (success) for normal exit, 0x7fff0001 for warning errors, and (0x7fff000? + 16*normal_unzip_exit_status) for all other errors, where the `?' is 2 (error) for \fIunzip\fP values 2 and 9-11, and 4 (fatal error) for the remaining ones (3-8, 50, 51). Check the ``\fCunzip \-v\fR'' output to see whether RETURN_SEVERITY was defined at compilation time. .PD .\" ========================================================================= .SH BUGS When attempting to extract a corrupted archive, \fIunzip\fP may go into an infinite loop and, if not stopped quickly enough, fill all available disk space. Compiling with CHECK_EOF should fix this problem for all zipfiles, but the option was introduced too late in the testing process to be made the default behavior. Future versions will be robust enough to fail gracefully on damaged archives. Check the ``\fCunzip \-v\fR'' output to see whether CHECK_EOF was defined during compilation. .LP [MS-DOS] When extracting or testing files from an archive on a defective floppy diskette, if the ``Fail'' option is chosen from DOS's ``Abort, Retry, Fail?'' message, \fIunzip\fP may hang the system, requiring a reboot. Instead, press control-C (or control-Break) to terminate \fIunzip\fP. .LP Under DEC Ultrix, \fIunzip\fP will sometimes fail on long zipfiles (bad CRC, not always reproducible). This is apparently due either to a hardware bug (cache memory) or an operating system bug (improper handling of page faults?). .LP Dates and times of stored directories are not restored. .LP [OS/2] Extended attributes for existing directories are never updated. This is a limitation of the operating system; \fIunzip\fP has no way to determine whether the stored attributes are newer or older than the existing ones. .LP [VMS] When extracting to another directory, only the \fI[.foo]\fP syntax is accepted for the \fB\-d\fP option; the simple Unix \fIfoo\fP syntax is silently ignored (as is the less common VMS \fIfoo.dir\fP syntax). .LP [VMS] When the file being extracted already exists, \fIunzip\fP's query only allows skipping, overwriting or renaming; there should additionally be a choice for creating a new version of the file. In fact, the ``overwrite'' choice does create a new version; the old version is not overwritten or deleted. .PD .\" ========================================================================= .SH SEE ALSO \fIfunzip\fP(1L), \fIzip\fP(1L), \fIzipcloak\fP(1L), \fIzipgrep\fP(1L), \fIzipinfo\fP(1L), \fIzipnote\fP(1L), \fIzipsplit\fP(1L) .PD .\" ========================================================================= .SH AUTHORS The primary Info-ZIP authors (current zip-bugs workgroup) are: Jean-loup Gailly (Zip); Greg R. Roelofs (UnZip); Mark Adler (decompression, fUnZip); Kai Uwe Rommel (OS/2); Igor Mandrichenko and Hunter Goatley (VMS); John Bush and Paul Kienitz (Amiga); Antoine Verheijen (Macintosh); Chris Herborth (Atari); Henry Gessau (NT); Karl Davis, Sergio Monesi and Evan Shattock (Acorn Archimedes); and Robert Heath (Windows). The author of the original unzip code upon which Info-ZIP's is based was Samuel H. Smith; Carl Mascott did the first Unix port; and David P. Kirschbaum organized and led Info-ZIP in its early days. The full list of contributors to UnZip has grown quite large; please refer to the CONTRIBS file in the UnZip source distribution for a relatively complete version. .PD .\" ========================================================================= .SH VERSIONS .ta \w'vx.xxnn'u +\w'fall 1989'u+3n .PD 0 .IP "v1.2\t15 Mar 89" \w'\t\t'u Samuel H. Smith .IP "v2.0\t\ 9 Sep 89" Samuel H. Smith .IP "v2.x\tfall 1989" many Usenet contributors .IP "v3.0\t\ 1 May 90" Info-ZIP (DPK, consolidator) .IP "v3.1\t15 Aug 90" Info-ZIP (DPK, consolidator) .IP "v4.0\t\ 1 Dec 90" Info-ZIP (GRR, maintainer) .IP "v4.1\t12 May 91" Info-ZIP .IP "v4.2\t20 Mar 92" Info-ZIP (zip-bugs subgroup, GRR) .IP "v5.0\t21 Aug 92" Info-ZIP (zip-bugs subgroup, GRR) .IP "v5.01\t15 Jan 93" Info-ZIP (zip-bugs subgroup, GRR) .IP "v5.1\t\ 7 Feb 94" Info-ZIP (zip-bugs subgroup, GRR) .IP "v5.11\t\ 2 Aug 94" Info-ZIP (zip-bugs subgroup, GRR) .IP "v5.12\t28 Aug 94" Info-ZIP (zip-bugs subgroup, GRR) .PD