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

压缩解压

开发平台:

MultiPlatform

  1. FUNZIP(1L)                                             FUNZIP(1L)
  2. NAME
  3.        funzip  -  filter  for  extracting from a ZIP archive in a
  4.        pipe
  5. SYNOPSIS
  6.        [...]  |  funzip [-password]  |  [...]
  7.        funzip [-password] input.zip  |  [...]  funzip [-password]
  8.        input.gz  |  [...]
  9. ARGUMENTS
  10.        [-password]
  11.               Optional  password  to  be  used  if ZIP archive is
  12.               encrypted.  Decryption may not be supported at some
  13.               sites.  See DESCRIPTION for more details.
  14. DESCRIPTION
  15.        funzip  acts  as  a filter; that is, it assumes that a ZIP
  16.        archive (or a gzip'd(1) file) is being piped into standard
  17.        input,  and  it extracts the first member from the archive
  18.        to stdout.  If there is an argument, then the input  comes
  19.        from the specified file instead of from stdin.  A password
  20.        for encrypted zip files can be specified  on  the  command
  21.        line  (preceding  the  file name, if any) by prefixing the
  22.        password with a dash.  Note that this constitutes a  secu-
  23.        rity risk on many systems; currently running processes are
  24.        often visible  via  simple  commands  (e.g.,  ps(1)  under
  25.        Unix),  and  command-line  histories  can be read.  If the
  26.        first entry of the zip file is encrypted and  no  password
  27.        is  specified  on  the  command  line,  then  the  user is
  28.        prompted for a password and the password is not echoed  on
  29.        the console.
  30.        Given  the  limitation on single-member extraction, funzip
  31.        is most useful in conjunction with  a  secondary  archiver
  32.        program such as tar(1).  The following section includes an
  33.        example illustrating this usage in the case of disk  back-
  34.        ups to tape.
  35. EXAMPLES
  36.        To  use  funzip  to  extract  the first member file of the
  37.        archive test.zip and to pipe it into more(1):
  38.            funzip test.zip | more
  39.        To use funzip to test the first member  file  of  test.zip
  40.        (any errors will be reported on standard error):
  41.            funzip test.zip > /dev/null
  42.        To  use zip and funzip in place of compress(1) and zcat(1)
  43.        (or gzip(1L) and gzcat(1L)) for tape backups:
  44.            tar cf - . | zip -7 | dd of=/dev/nrst0 obs=8k
  45. Info-ZIP             28 November 1998 (v3.93)                   1
  46. FUNZIP(1L)                                             FUNZIP(1L)
  47.            dd if=/dev/nrst0 ibs=8k | funzip | tar xf -
  48.        (where, for example, nrst0 is a SCSI tape drive).
  49. BUGS
  50.        When piping an encrypted file into more and allowing  fun-
  51.        zip  to prompt for password, the terminal may sometimes be
  52.        reset to a non-echo mode.  This is  apparently  due  to  a
  53.        race  condition  between  the two programs; funzip changes
  54.        the terminal mode to non-echo before more reads its state,
  55.        and  more  then  ``restores''  the  terminal  to this mode
  56.        before exiting.  To recover, run funzip on the  same  file
  57.        but  redirect  to  /dev/null rather than piping into more;
  58.        after prompting again for the password, funzip will  reset
  59.        the terminal properly.
  60.        There  is  presently  no way to extract any member but the
  61.        first from a ZIP archive.  This would  be  useful  in  the
  62.        case  where  a  ZIP  archive  is  included  within another
  63.        archive.  In the case where the first member is  a  direc-
  64.        tory, funzip simply creates the directory and exits.
  65.        The  functionality  of  funzip should be incorporated into
  66.        unzip itself (future release).
  67. SEE ALSO
  68.        gzip(1L), unzip(1L), unzipsfx(1L), zip(1L),  zipcloak(1L),
  69.        zipinfo(1L), zipnote(1L), zipsplit(1L)
  70. URL
  71.        The     Info-ZIP     home    page    is    currently    at
  72.        http://www.cdrom.com/pub/infozip/ .
  73. AUTHOR
  74.        Mark Adler (Info-ZIP)
  75. Info-ZIP             28 November 1998 (v3.93)                   2