home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / utility / archiver / compress / compress.doc < prev    next >
Text File  |  1987-08-17  |  991b  |  29 lines

  1.  
  2.     compress - adaptive Lempel-Zev compression program from the world of unix
  3.  
  4.  
  5.     This version has a default value of 13 bits as the size of the encoding 
  6. can be changed to 12 by -b12 option see below.
  7.  
  8.     usage: compress [-dfvc] [-b buts] [file ...]
  9.  
  10.  *    -d:        If given, decompression is done instead.
  11.  *
  12.  *      -c:         Write output on stdout, don't remove original.
  13.  *
  14.  *      -b:         Parameter limits the max number of bits/code.
  15.  *
  16.  *    -f:        Forces output file to be generated, even if one already
  17.  *            exists, and even if no space is saved by compressing.
  18.  *            If -f is not used, the user will be prompted if stdin is
  19.  *            a tty, otherwise, the output file will not be overwritten.
  20.  *
  21.  *      -v:        Write compression statistics
  22.  *
  23.  *     file ...:   Files to be compressed.  If none specified, stdin
  24.  *            is used.
  25.  * Outputs:
  26.  *    file.Z:        Compressed form of file with same mode, owner, and utimes
  27.  *     or stdout   (if stdin used as input)
  28.  
  29.