README
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:5k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. VMS README for UnZip 5.3 and later, 25 February 1997
  2. ----------------------------------------------------
  3. Notes about using UnZip and zipfiles under VMS (see INSTALL for instructions
  4. on compiling):
  5.  - Install UnZip as foreign symbol by adding this to login.com:
  6.       $ unzip == "$disk:[dir]unzip.exe"
  7.       $ zipinfo == "$disk:[dir]unzip.exe ""-Z"""
  8.    where "disk" and "dir" are location of UnZip executable; the "$" before
  9.    the disk name is important.  Some people, including the author, prefer
  10.    a short alias such as "ii" instead of "zipinfo"; edit to taste.  (All of
  11.    the quotes around the -Z are necessary, but don't ask us to explain it...)
  12.  - Optionally install UnZipSFX for use with the MAKESFX.COM command file:
  13.       $ unzipsfx :== disk:[dir]unzipsfx.exe
  14.    Thereafter an archive "foo.zip" may be converted to "foo.exe" simply by
  15.    typing "@makesfx foo" (assuming MAKESFX.COM is in the current directory).
  16.    Note that there is *no* leading "$" in this case.
  17.  - After proper installation, the default version of UnZip is invoked just
  18.    as in Unix or MS-DOS:  "unzip -opts archive files".  The hyphen ('-') is
  19.    the switch character, not the slash ('/') as in native VMS commands.  An
  20.    alternative is available if VMSCLI is defined during compilation; this
  21.    version does provide a native VMS-style command interface (e.g., /ZIPINFO
  22.    instead of -Z).  Both versions accept the command "unzip -v", which can
  23.    be used to check whether VMSCLI was defined or not; but an even simpler
  24.    method is to type "unzip" and look at the help screen.  Note that options
  25.    placed in an environment variable (UNZIP_OPTS) must be of the short, hy-
  26.    phenated form regardless of how UnZip was compiled.
  27.  - The VMS C runtime library translates all command-line text to lowercase
  28.    unless it is quoted, making some options and/or filenames not work as
  29.    intended.  For example:
  30.         unzip -V zipfile vms/README;*
  31.    is translated to
  32.         unzip -v zipfile vms/readme;*
  33.    which may not match the contents of the zipfile and definitely won't
  34.    extract the file with its version number as intended.  This can be
  35.    avoided by use of the -C option (/CASE_INSENSITIVE) or by enclosing
  36.    the uppercase stuff in quotes:
  37.         unzip "-V" zipfile "vms/README;*"
  38.    Note that quoting the whole line probably won't work, since it would
  39.    be interpreted as a single argument by the C library.
  40.  - Wildcards that refer to files internal to the archive behave like Unix
  41.    wildcards, not VMS ones (assuming UnZip was not compiled with VMSWILD
  42.    defined).  This is both a matter of consistency (see above) and power--
  43.    full Unix regular expressions are supported, so that one can specify
  44.    "all .c and .h files that start with a, b, c or d and do not have a 2
  45.    before the dot" as "[a-d]*[^2].[ch]".  Of course, "*.[ch]" is a much more
  46.    common wildcard specification, but the power is there if you need it.
  47.    Note that "*" matches zipfile directory separators ('/'), too.  If UnZip
  48.    *was* compiled with VMSWILD defined (do "unzip -v" to check), the single-
  49.    character wildcard is "%" rather than "?", and character sets (ranges)
  50.    are delimited with () instead of [] (for example, "*.(ch)").
  51.  - Wildcards that refer to zipfiles (i.e., external VMS files) behave like
  52.    normal VMS wildcards regardless of whether VMSWILD was defined or not.
  53.    Ranges are not supported.  Thus "unzip *font-%.zip" is about as much as
  54.    one can do for specifying wildcard zipfiles.
  55.  - Created files get whatever permissions were stored in the archive (mapped
  56.    to VMS and/or masked with your default permissions, depending on the
  57.    originating operating system), but created directories additionally in-
  58.    herit the (possibly more restrictive) permissions of the parent directory.
  59.    And obviously things won't work if you don't have permission to write to
  60.    the extraction directory.
  61.  - When transferring files, particularly via Kermit, pay attention to the
  62.    settings!  In particular, zipfiles must be transferred in some binary
  63.    mode, which is NOT Kermit's default mode, and this mode must usually be
  64.    set on BOTH sides of the transfer (e.g., both VAX and PC).  See the notes
  65.    below for details.
  66. From Info-ZIP Digest (Wed, 6 Nov 1991), Volume 91, Issue 290:
  67.    Date: Tue, 5 Nov 91 15:31 CDT
  68.    From: Hugh Schmidt <HUGH@macc.wisc.edu>
  69.             ****************************************************
  70.             *** VMS ZIP and PKZIP compatibility using KERMIT ***
  71.             ****************************************************
  72.    Many use Procomm's kermit to transfer zipped files between PC and VMS
  73.    VAX.  The following VMS kermit settings make VMS Zip/UnZip compatible
  74.    with PC Zip/UnZip or PKZIP/PKUNZIP:
  75.                                          VMS kermit          Procomm kermit
  76.                                     -------------------   --------------------
  77.    Uploading PC zipfile to VMS:     set file type fixed   set file type binary
  78.    Downloading VMS zipfile to PC:   set file type block   set file type binary
  79.    "Block I/O lets you bypass the VMS RMS record-processing capabilities
  80.    entirely", (Guide to VMS file applications, Section 8.5).  The kermit
  81.    guys must have known this!