COMPRESS.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. COMPRESS(1)               Minix Programmer's Manual                COMPRESS(1)
  2. NAME
  3.      compress, uncompress, zcat - compress a file  using  modified  Lempel-Ziv
  4.      coding
  5. SYNOPSIS
  6.      compress [-cdfv] [file] ...
  7. OPTIONS
  8.      -c   Put output on stdout instead of on file.Z
  9.      -d   Decompress instead of compress
  10.      -f   Force output even if there is no saving
  11.      -v   Verbose mode
  12. EXAMPLES
  13.      compress <infile >outfile
  14.                          # Compress 1 file
  15.      compress x y z      # Compress 3 files to x.Z, y.Z, and z.Z
  16.      compress -d file.Z  # Decompress file.Z to file
  17. DESCRIPTION
  18.      The listed files (or stdin, if none are given) are compressed  using  the
  19.      Ziv-Lempel  algorithm.   If  the  output  is  smaller than the input, the
  20.      output is put on file.Z or stdout if no files are listed. If compress  is
  21.      linked  to  uncompress,  the  latter  is  the same as giving the -d flag.
  22.      Similarly, a link to zcat decompresses to stdout.  The MINIX  version  of
  23.      compress uses 13-bit compression.  This means that when compressing files
  24.      on other systems for transmission to MINIX,  be  sure  that  only  13-bit
  25.      compression is used.  On many systems, the default is 16-bit (too big).
  26. SEE ALSO
  27.      tar(1).
  28.                                                                              1