home *** CD-ROM | disk | FTP | other *** search
/ Pro Intralink 3.1 / Pro Intralink v3.1.iso / dsrc / sgi_mips4 / gzip.readme < prev   
Encoding:
Text File  |  2001-11-27  |  2.4 KB  |  77 lines

  1. The applications "gzip" and "gunzip" are being supplied without
  2. additional charge.
  3.  
  4. Please read gzip.COPYING for details on the license agreement for 
  5. the distribution of gzip and gunzip.
  6.  
  7. Per the conditions for copying, found in gzip.COPYING, the
  8. executables are provided without source code. Source code may
  9. be obtained upon request within 3 years of the distribution of the
  10. executables.
  11.  
  12. Source code may also be obtained over the Internet from:
  13.     prep.ai.mit.edu:
  14.     gatekeeper.dec.com:/pub/GNU
  15.     ftp.uu.net:/systems/gnu
  16.     wuarchive.wustl.edu:/systems/gnu
  17.     nic.funet.fi:/pub/gnu
  18.  
  19. Questions about gzip or about the Free Software Foundation (FSF)
  20. can be addressed at: gnu@prep.ai.mit.edu.
  21.  
  22. Uses of gzip:
  23.  
  24.   1. To compress a file:
  25.  
  26.     gzip file
  27.  
  28.      Produces file.gz
  29.  
  30.   2. To uncompress a file which has been compressed with gzip:
  31.  
  32.     gunzip file
  33.       or
  34.     gunzip file.gz
  35.  
  36.   3. To uncompress a file which has been compressed with UN*X
  37.     compress:
  38.  
  39.     gunzip file.Z
  40.       or
  41.     cat file.old | gunzip > file.new
  42.  
  43.   4. To convert a file from UN*X compression to gzip compression:
  44.  
  45.     cat file.Z | gunzip | gzip > file.new
  46.  
  47. Further information on gzip and gunzip may be obtained by reading
  48. the appropriate man pages, which are provided as part of the source
  49. code.
  50.  
  51. Here is one of the gzip README files (from wuarchive.wustl.edu):
  52. ------------------------------------------------------------------------------
  53. Because the `compress' utility is covered by patents (US 4,464,650 and
  54. 4,558,302), we cannot use it; it is not free software.
  55.  
  56. Instead, the GNU Project uses the `gzip' program, which is free of known
  57. software patents and also compresses better than `compress'.  Files
  58. compressed with this method end with `.gz'.
  59.  
  60. Gzip can also uncompress files compressed with `compress' (i.e. files
  61. ending in `.Z'), since the uncompression algorithm is not patented.
  62.  
  63. To extract sources that are in files ending in `.tar.gz' you can use the
  64. command
  65.  
  66.       gzip -d < foo.tar.gz | tar xf -
  67.  
  68. where `foo.tar.gz' is the name of the file.
  69.  
  70. Gzip is available in source form on this ftp archive[wuarchive.wustl.edu],
  71. in the file gzip-N.N.shar, gzip-N.N.tar, and gzip-N.N.tar.gz (the last for
  72. people who already have gzip but want to get a newer version, since the
  73. gzipped file will transfer faster).  Gzip is also available as a DOS
  74. executable in the file gzip-N.N.msdos.exe. To find a VMS executable,
  75. read gzip-vms.README.
  76. ------------------------------------------------------------------------------
  77.