home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / EFFO / pd2.lzh / COMPR / compr.doc < prev   
Text File  |  1990-05-16  |  1KB  |  28 lines

  1. USAGE
  2.       compress [-dfvc] [-b maxbits] [file ...]
  3.  
  4. DESCRIPTION
  5.       Compress uses Modified Lempel-Ziv-Welch compression to compress
  6. the named input files (or standard input if none are specified).
  7. Each named file is compressed, then, if the compression results in a
  8. smaller file, the compressed file replaces the original file.  The
  9. compressed filename is the original with the suffix  .Z.  Using the 
  10. -d option, the specified files (or standard input if none are specified)
  11. will be decompressed, and the decompressed file will replace the
  12. compressed version.
  13.  
  14. OPTIONS
  15.    -d   Decompress the specified files.
  16.    -c   send all output to standard out.
  17.          In particular, compress -dc will decompress the file
  18.          and send the result to standard out without deleting the
  19.          original file, providing a way to list a compressed file
  20.          directly.
  21.    -f   Force the output file to be generated, even if no savings
  22.         result.
  23.    -v   Write compression statistics.
  24.    -b maxbits   Set the maximum number of bits/code.  Generally, more bits
  25.         will result in better compression.
  26.  
  27.  
  28.