unzipsfx.hlp
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:10k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. 1 UNZIPSFX
  2.      unzipsfx  -  self-extracting  stub  for  prepending  to  ZIP
  3.      archives
  4.      <name  of  unzipsfx+archive   combo>   [-cfptuz[ajnoqsCLV$]]
  5.      [file(s) ...] [-x xfile(s) ...]
  6.      unzipsfx is a modified version of unzip designed  to  be
  7.      prepended  to  existing  ZIP archives in order to form self-
  8.      extracting archives.  Instead of taking its  first  non-flag
  9.      argument  to  be  the  zipfile(s)  to be extracted, unzipsfx
  10.      seeks itself under the name by  which  it  was  invoked  and
  11.      tests  or  extracts  the  contents  of the appended archive.
  12.      Because the executable stub adds bulk to  the  archive  (the
  13.      whole  purpose  of  which  is to be as small as possible), a
  14.      number of the regular version's less-vital capabilities have
  15.      been  removed.   Among these are the usage (or help) screen,
  16.      the listing and diagnostic functions (-l and -v), the  abil-
  17.      ity to decompress older compression formats (the ``reduce,''
  18.      ``shrink'' and ``implode''  methods),  and  the  ability  to
  19.      extract  to a directory other than the current one.  Decryp-
  20.      tion is supported as a compile-time  option  but  should  be
  21.      avoided  unless  the  attached  archive  contains  encrypted
  22.      files.
  23.      Note that self-extracting archives made with unzipsfx are no
  24.      more  (or  less) portable across different operating systems
  25.      than is the unzip executable itself.   In  general  a  self-
  26.      extracting  archive  made  on  a particular Unix system, for
  27.      example, will only self-extract under  the  same  flavor  of
  28.      Unix.  Regular unzip may still be used to extract the embed-
  29.      ded archive as with any normal  zipfile,  although  it  will
  30.      generate  a harmless warning about extra bytes at the begin-
  31.      ning of the zipfile.
  32. [file(s)]
  33.           An optional list of archive members  to  be  processed.
  34.           Regular  expressions  (wildcards)  similar  to those in
  35.           Unix egrep(1) may be used to  match  multiple  members.
  36.           These wildcards may contain:
  37.           *    matches a sequence of 0 or more characters
  38.           ?    matches exactly 1 character
  39.           [...]
  40.                matches any  single  character  found  inside  the
  41.                brackets;  ranges  are  specified  by  a beginning
  42.                character, a hyphen, and an ending character.   If
  43.                an  exclamation point or a caret (`!' or `^') fol-
  44.                lows the left bracket, then the range  of  charac-
  45.                ters within the brackets is complemented (that is,
  46.                anything except the characters inside the brackets
  47.                is considered a match).
  48.           (Be sure to quote any character which  might  otherwise
  49.           be  interpreted  or  modified  by the operating system,
  50.           particularly under Unix and VMS.)
  51. [-x xfile(s)]
  52.           An optional list of archive members to be excluded from
  53.           processing.   Since wildcard characters match directory
  54.           separators (`/'), this option may be  used  to  exclude
  55.           any  files  which  are in subdirectories.  For example,
  56.           ``unzip foo *.[ch] -x */*'' would extract all C  source
  57.           files  in the main directory, but none in any subdirec-
  58.           tories.  Without the -x option, all C source  files  in
  59.           all directories within the zipfile would be extracted.
  60. 2 Options
  61.      unzipsfx supports the following unzip options:   -c  and
  62.      -p  (extract  to standard output/screen), -f and -u (freshen
  63.      and  update  existing  files  upon  extraction),  -t   (test
  64.      archive) and -z (print archive comment).  All normal listing
  65.      options (-l, -v and -Z) have been removed, but  the  testing
  66.      option (-t) may be used as a ``poor man's'' listing.  Alter-
  67.      natively, those creating self-extracting archives  may  wish
  68.      to include a short listing in the zipfile comment.
  69.      See unzip for  a  more  complete  description  of  these
  70.      options.
  71.      MODIFIERS
  72.      unzipsfx currently supports  all  unzip  modifiers:   -a
  73.      (convert  text  files),  -n (never overwrite), -o (overwrite
  74.      without prompting), -q (operate quietly),  -C  (match  names
  75.      case-insenstively), -L (convert uppercase-OS names to lower-
  76.      case), -j (junk paths) and -V (retain version numbers); plus
  77.      the   following   operating-system   specific  options:   -X
  78.      (restore VMS owner/protection info), -s (convert  spaces  in
  79.      filenames  to  underscores  [DOS, OS/2, NT]) and -$ (restore
  80.      volume label [DOS, OS/2, NT, Amiga]).
  81.      (Support for regular ASCII text-conversion may be removed in
  82.      future versions, since it is simple enough for the archive's
  83.      creator to ensure that text files have the appropriate  for-
  84.      mat for the local OS.  EBCDIC conversion will of course con-
  85.      tinue to be supported since the zipfile format implies ASCII
  86.      storage of text files.)
  87.      See unzip for  a  more  complete  description  of  these
  88.      modifiers.
  89. 2 Environment_options
  90.      unzipsfx uses the same environment  variables  as  unzip
  91.      does,  although  this  is likely to be an issue only for the
  92.      person creating and  testing  the  self-extracting  archive.
  93.      See unzip for details.
  94. 2 Decryption
  95.      Decryption is supported exactly as in  unzip;  that  is,
  96.      interactively with a non-echoing prompt for the password(s).
  97.      See unzip for details.  Once again,  note  that  if  the
  98.      archive  has  no encrypted files there is no reason to use a
  99.      version of unzipsfx with decryption support; that only  adds
  100.      to the size of the archive.
  101. 2 Examples
  102.      To create a self-extracting archive letters from  a  regular
  103.      zipfile letters.zip and change the new archive's permissions
  104.      to be world-executable under Unix:
  105.          cat unzipsfx letters.zip > letters
  106.          chmod 755 letters
  107.      To create the same archive under MS-DOS, OS/2  or  NT  (note
  108.      the use of the /b [binary] option to the copy command):
  109.          copy /b unzipsfx.exe+letters.zip letters.exe
  110.      Under VMS:
  111.          copy unzipsfx.exe,letters.zip letters.exe
  112.          letters == "$currentdisk:[currentdir]letters.exe"
  113.      (The VMS append command may also be used.  The  second  com-
  114.      mand installs the new program as a ``foreign command'' capa-
  115.      ble of taking  arguments.)  To  test  (or  list)  the  newly
  116.      created self-extracting archive:
  117.          letters -t
  118.      To test letters quietly, printing  only  a  summary  message
  119.      indicating whether the archive is OK or not:
  120.          letters -tq
  121.      To extract the complete contents into the current directory,
  122.      recreating all files and subdirectories as necessary:
  123.          letters
  124.      To extract only the README  file  to  standard  output  (the
  125.      screen):
  126.          letters -c README
  127.      To print only the zipfile comment:
  128.          letters -z
  129. 2 Limitations
  130.      The principle and fundamental limitation of unzipsfx is that
  131.      it  is  not  portable across architectures or operating sys-
  132.      tems, and therefore neither are the resulting archives.  For
  133.      some  architectures  there  is  limited portability, however
  134.      (e.g., between some flavors of Intel-based Unix).
  135.      unzipsfx has no knowledge of the user's PATH, so in  general
  136.      an  archive  must either be in the current directory when it
  137.      is invoked, or else a full or relative path must  be  given.
  138.      If  a  user attempts to extract the archive from a directory
  139.      in the PATH other than the current one, unzipsfx will  print
  140.      a  warning  to  the  effect, ``can't find myself.''  This is
  141.      always true under Unix and may be true in some  cases  under
  142.      MS-DOS,  depending  on  the compiler used (Microsoft C fully
  143.      qualifies the program name, but other  compilers  may  not).
  144.      Under OS/2 and NT there are operating-system calls available
  145.      which provide the full path name,  so  the  archive  may  be
  146.      invoked  from anywhere in the user's path.  The situation is
  147.      not known for Atari TOS, MacOS, etc.
  148.      As noted above, a number of the normal  unzip  functions
  149.      have  been removed in order to make unzipsfx smaller:  usage
  150.      and diagnostic info, listing  functions  and  extraction  to
  151.      other directories.  Also, only stored and deflated files are
  152.      supported.  The latter  limitation  is  mainly  relevant  to
  153.      those who create SFX archives, however.
  154.      VMS users must know how to set up  self-extracting  archives
  155.      as  foreign  commands  in  order  to  use  any of unzipsfx's
  156.      options.  This is not necessary for simple  extraction,  but
  157.      the command to do so then becomes, e.g., ``run letters'' (to
  158.      continue the examples given above).
  159.      unzipsfx is not supported on the Amiga because  of  the  way
  160.      the  loader  works;  the  entire  archive  contents would be
  161.      loaded into memory by default.  It may be possible  to  work
  162.      around this by defining the attached archive to be a ``debug
  163.      hunk,'' but compatibility problems between the ROM levels of
  164.      older  Amigas  and  newer  ones are likely to cause problems
  165.      regardless.
  166.      All current bugs in unzip exist in unzipsfx as well.
  167. 2 Diagnostics
  168.      unzipsfx's exit status (error level) is identical to that of
  169.      unzip; see the corresponding help entry.
  170. 2 See_also
  171.      funzip, unzip, zip,  zipcloak,  zipgrep,
  172.      zipinfo, zipnote, zipsplit
  173. 2 Authors
  174.      Greg Roelofs was responsible for the basic modifications  to
  175.      UnZip  necessary  to create UnZipSFX.  See unzip for the
  176.      current list of zip-bugs authors, or the  file  CONTRIBS  in
  177.      the  UnZip source distribution for the full list of Info-ZIP
  178.      contributors.