home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / utility / archiver / compre43 / compress.man next >
Text File  |  1991-11-17  |  2KB  |  54 lines

  1.      Name
  2.       compress - compress data for storage.
  3.       uncompress - uncompress a stored file.
  4.       zcat - display a stored file.
  5.  
  6.      Syntax
  7.       compress [-dfFqc] [-b    bits] file
  8.       uncompress [-fqc] file
  9.       zcat file
  10.  
  11.      Description
  12.       compress takes a file    and compresses it to the smallest
  13.       possible size, creates a compressed output file, and removes
  14.       the original file unless the -c option is present.
  15.       Compression is achieved by encoding common strings within
  16.       the file. uncompress restores    a previously compressed    file
  17.       to its uncompressed state and    removes    the compressed
  18.       version. zcat    uncompresses and displays a file on the
  19.       standard output. When    zcat is    used to    display    a file,    the
  20.       file is uncompressed and concatenated    on the screen or
  21.       standard output, and the compressed version of the file is
  22.       not removed.
  23.  
  24.       If no    file is    specified on the command line, input is    taken
  25.       from the standard input and the output is directed to    the
  26.       standard output. Output defaults to a    file with the same
  27.       filename as the input    file with the suffix ``.Z'' or it can
  28.       be directed through the standard output. The output files
  29.       have the same    permissions and    ownership as the corresponding
  30.       input    files or the user's standard permissions if output is
  31.       directed through the standard    output.
  32.  
  33.       If no    space is saved by compression, the output file is not
  34.       written unless the -F    flag is    present    on the command line.
  35.  
  36.      Options
  37.       The following    options    are available from the command line:
  38.  
  39.       -d       Decompresses    a compressed file.
  40.  
  41.       -c       Writes output on the    standard output    and do not
  42.            remove original file.
  43.  
  44.       -bbits   Specifies the maximum number    of bits    to use in
  45.            encoding.
  46.  
  47.       -f       Overwrites previous output file.
  48.  
  49.       -F       Writes output file even if compression saves    no
  50.            space.
  51.  
  52.       -q       Generates no    output except error messages, if any.
  53.  
  54.