]> git.cworth.org Git - gzip/blob - gzip.info
Imported Debian patch 1.3.5-10sarge2
[gzip] / gzip.info
1 This is gzip.info, produced by makeinfo version 4.7 from gzip.texi.
2
3 INFO-DIR-SECTION Utilities
4 START-INFO-DIR-ENTRY
5 * gzip: (gzip).         The gzip command for compressing files.
6 END-INFO-DIR-ENTRY
7
8    This file documents the GNU `gzip' command for compressing files.
9
10    This manual is for Gzip (version 1.3.5, 10 September 2006), and
11 documents commands for compressing and decompressing data.
12
13    Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
14
15    Copyright (C) 1992, 1993 Jean-loup Gailly
16
17      Permission is granted to copy, distribute and/or modify this
18      document under the terms of the GNU Free Documentation License,
19      Version 1.1 or any later version published by the Free Software
20      Foundation; with no Invariant Sections, with the Front-Cover texts
21      being "A GNU Manual," and with the Back-Cover Texts as in (a)
22      below.  A copy of the license is included in the section entitled
23      "GNU Free Documentation License."
24
25      (a) The FSF's Back-Cover Text is: "You have freedom to copy and
26      modify this GNU Manual, like GNU software.  Copies published by
27      the Free Software Foundation raise funds for GNU development."
28
29 \1f
30 File: gzip.info,  Node: Top,  Up: (dir)
31
32 Compressing Files
33 *****************
34
35 This file documents the GNU `gzip' command for compressing files.
36
37    This manual is for Gzip (version 1.3.5, 10 September 2006), and
38 documents commands for compressing and decompressing data.
39
40    Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
41
42    Copyright (C) 1992, 1993 Jean-loup Gailly
43
44      Permission is granted to copy, distribute and/or modify this
45      document under the terms of the GNU Free Documentation License,
46      Version 1.1 or any later version published by the Free Software
47      Foundation; with no Invariant Sections, with the Front-Cover texts
48      being "A GNU Manual," and with the Back-Cover Texts as in (a)
49      below.  A copy of the license is included in the section entitled
50      "GNU Free Documentation License."
51
52      (a) The FSF's Back-Cover Text is: "You have freedom to copy and
53      modify this GNU Manual, like GNU software.  Copies published by
54      the Free Software Foundation raise funds for GNU development."
55
56 * Menu:
57
58 * Overview::            Preliminary information.
59 * Sample::              Sample output from `gzip'.
60 * Invoking gzip::       How to run `gzip'.
61 * Advanced usage::      Concatenated files.
62 * Environment::         The `GZIP' environment variable
63 * Tapes::               Using `gzip' on tapes.
64 * Problems::            Reporting bugs.
65 * Copying This Manual:: How to make copies of this manual.
66 * Concept Index::       Index of concepts.
67
68 \1f
69 File: gzip.info,  Node: Overview,  Next: Sample,  Up: Top
70
71 1 Overview
72 **********
73
74 `gzip' reduces the size of the named files using Lempel-Ziv coding
75 (LZ77).  Whenever possible, each file is replaced by one with the
76 extension `.gz', while keeping the same ownership modes, access and
77 modification times.  (The default extension is `-gz' for VMS, `z' for
78 MSDOS, OS/2 FAT and Atari.)  If no files are specified or if a file
79 name is "-", the standard input is compressed to the standard output.
80 `gzip' will only attempt to compress regular files.  In particular, it
81 will ignore symbolic links.
82
83    If the new file name is too long for its file system, `gzip'
84 truncates it.  `gzip' attempts to truncate only the parts of the file
85 name longer than 3 characters.  (A part is delimited by dots.) If the
86 name consists of small parts only, the longest parts are truncated.
87 For example, if file names are limited to 14 characters, gzip.msdos.exe
88 is compressed to gzi.msd.exe.gz.  Names are not truncated on systems
89 which do not have a limit on file name length.
90
91    By default, `gzip' keeps the original file name and timestamp in the
92 compressed file. These are used when decompressing the file with the
93 `-N' option. This is useful when the compressed file name was truncated
94 or when the time stamp was not preserved after a file transfer.
95
96    Compressed files can be restored to their original form using `gzip
97 -d' or `gunzip' or `zcat'.  If the original name saved in the
98 compressed file is not suitable for its file system, a new name is
99 constructed from the original one to make it legal.
100
101    `gunzip' takes a list of files on its command line and replaces each
102 file whose name ends with `.gz', `.z', `.Z', `-gz', `-z' or `_z' and
103 which begins with the correct magic number with an uncompressed file
104 without the original extension.  `gunzip' also recognizes the special
105 extensions `.tgz' and `.taz' as shorthands for `.tar.gz' and `.tar.Z'
106 respectively. When compressing, `gzip' uses the `.tgz' extension if
107 necessary instead of truncating a file with a `.tar' extension.
108
109    `gunzip' can currently decompress files created by `gzip', `zip',
110 `compress' or `pack'. The detection of the input format is automatic.
111 When using the first two formats, `gunzip' checks a 32 bit CRC (cyclic
112 redundancy check). For `pack', `gunzip' checks the uncompressed length.
113 The `compress' format was not designed to allow consistency checks.
114 However `gunzip' is sometimes able to detect a bad `.Z' file. If you
115 get an error when uncompressing a `.Z' file, do not assume that the
116 `.Z' file is correct simply because the standard `uncompress' does not
117 complain.  This generally means that the standard `uncompress' does not
118 check its input, and happily generates garbage output.  The SCO
119 `compress -H' format (`lzh' compression method) does not include a CRC
120 but also allows some consistency checks.
121
122    Files created by `zip' can be uncompressed by `gzip' only if they
123 have a single member compressed with the 'deflation' method. This
124 feature is only intended to help conversion of `tar.zip' files to the
125 `tar.gz' format.  To extract a `zip' file with a single member, use a
126 command like `gunzip <foo.zip' or `gunzip -S .zip foo.zip'.  To extract
127 `zip' files with several members, use `unzip' instead of `gunzip'.
128
129    `zcat' is identical to `gunzip -c'.  `zcat' uncompresses either a
130 list of files on the command line or its standard input and writes the
131 uncompressed data on standard output.  `zcat' will uncompress files
132 that have the correct magic number whether they have a `.gz' suffix or
133 not.
134
135    `gzip' uses the Lempel-Ziv algorithm used in `zip' and PKZIP.  The
136 amount of compression obtained depends on the size of the input and the
137 distribution of common substrings.  Typically, text such as source code
138 or English is reduced by 60-70%.  Compression is generally much better
139 than that achieved by LZW (as used in `compress'), Huffman coding (as
140 used in `pack'), or adaptive Huffman coding (`compact').
141
142    Compression is always performed, even if the compressed file is
143 slightly larger than the original. The worst case expansion is a few
144 bytes for the `gzip' file header, plus 5 bytes every 32K block, or an
145 expansion ratio of 0.015% for large files. Note that the actual number
146 of used disk blocks almost never increases. `gzip' preserves the mode,
147 ownership and timestamps of files when compressing or decompressing.
148
149    The `gzip' file format is specified in P. Deutsch, GZIP file format
150 specification version 4.3, Internet RFC 1952
151 (ftp://ftp.isi.edu/in-notes/rfc1952.txt) (May 1996).  The `zip'
152 deflation format is specified in P. Deutsch, DEFLATE Compressed Data
153 Format Specification version 1.3, Internet RFC 1951
154 (ftp://ftp.isi.edu/in-notes/rfc1951.txt) (May 1996).
155
156 \1f
157 File: gzip.info,  Node: Sample,  Next: Invoking gzip,  Prev: Overview,  Up: Top
158
159 2 Sample Output
160 ***************
161
162 Here are some realistic examples of running `gzip'.
163
164    This is the output of the command `gzip -h':
165
166      gzip 1.3
167      (1999-12-21)
168      usage: gzip [-cdfhlLnNrtvV19] [-S suffix] [file ...]
169       -c --stdout      write on standard output, keep original files unchanged
170       -d --decompress  decompress
171       -f --force       force overwrite of output file and compress links
172       -h --help        give this help
173       -l --list        list compressed file contents
174       -L --license     display software license
175       -n --no-name     do not save or restore the original name and time stamp
176       -N --name        save or restore the original name and time stamp
177       -q --quiet       suppress all warnings
178       -r --recursive   operate recursively on directories
179       -S .suf  --suffix .suf     use suffix .suf on compressed files
180       -t --test        test compressed file integrity
181       -v --verbose     verbose mode
182       -V --version     display version number
183       -1 --fast        compress faster
184       -9 --best        compress better
185       file...          files to (de)compress. If none given, use standard input.
186      Report bugs to <bug-gzip@gnu.org>.
187
188    This is the output of the command `gzip -v texinfo.tex':
189
190      texinfo.tex:             69.7% -- replaced with texinfo.tex.gz
191
192    The following command will find all `gzip' files in the current
193 directory and subdirectories, and extract them in place without
194 destroying the original:
195
196      find . -name '*.gz' -print | sed 's/^\(.*\)[.]gz$/gunzip < "&" > "\1"/' | sh
197
198 \1f
199 File: gzip.info,  Node: Invoking gzip,  Next: Advanced usage,  Prev: Sample,  Up: Top
200
201 3 Invoking `gzip'
202 *****************
203
204 The format for running the `gzip' program is:
205
206      gzip OPTION ...
207
208    `gzip' supports the following options:
209
210 `--stdout'
211 `--to-stdout'
212 `-c'
213      Write output on standard output; keep original files unchanged.
214      If there are several input files, the output consists of a
215      sequence of independently compressed members. To obtain better
216      compression, concatenate all input files before compressing them.
217
218 `--decompress'
219 `--uncompress'
220 `-d'
221      Decompress.
222
223 `--force'
224 `-f'
225      Force compression or decompression even if the file has multiple
226      links or the corresponding file already exists, or if the
227      compressed data is read from or written to a terminal. If the
228      input data is not in a format recognized by `gzip', and if the
229      option `--stdout' is also given, copy the input data without
230      change to the standard output: let `zcat' behave as `cat'. If `-f'
231      is not given, and when not running in the background, `gzip'
232      prompts to verify whether an existing file should be overwritten.
233
234 `--help'
235 `-h'
236      Print an informative help message describing the options then quit.
237
238 `--list'
239 `-l'
240      For each compressed file, list the following fields:
241
242           compressed size: size of the compressed file
243           uncompressed size: size of the uncompressed file
244           ratio: compression ratio (0.0% if unknown)
245           uncompressed_name: name of the uncompressed file
246
247      The uncompressed size is given as `-1' for files not in `gzip'
248      format, such as compressed `.Z' files. To get the uncompressed
249      size for such a file, you can use:
250
251           zcat file.Z | wc -c
252
253      In combination with the `--verbose' option, the following fields
254      are also displayed:
255
256           method: compression method (deflate,compress,lzh,pack)
257           crc: the 32-bit CRC of the uncompressed data
258           date & time: time stamp for the uncompressed file
259
260      The crc is given as ffffffff for a file not in gzip format.
261
262      With `--verbose', the size totals and compression ratio for all
263      files is also displayed, unless some sizes are unknown. With
264      `--quiet', the title and totals lines are not displayed.
265
266      The `gzip' format represents the the input size modulo 2^32, so
267      the uncompressed size and compression ratio are listed incorrectly
268      for uncompressed files 4 GB and larger. To work around this
269      problem, you can use the following command to discover a large
270      uncompressed file's true size:
271
272           zcat file.gz | wc -c
273
274 `--license'
275 `-L'
276      Display the `gzip' license then quit.
277
278 `--no-name'
279 `-n'
280      When compressing, do not save the original file name and time
281      stamp by default. (The original name is always saved if the name
282      had to be truncated.) When decompressing, do not restore the
283      original file name if present (remove only the `gzip' suffix from
284      the compressed file name) and do not restore the original time
285      stamp if present (copy it from the compressed file). This option
286      is the default when decompressing.
287
288 `--name'
289 `-N'
290      When compressing, always save the original file name and time
291      stamp; this is the default. When decompressing, restore the
292      original file name and time stamp if present. This option is
293      useful on systems which have a limit on file name length or when
294      the time stamp has been lost after a file transfer.
295
296 `--quiet'
297 `-q'
298      Suppress all warning messages.
299
300 `--recursive'
301 `-r'
302      Travel the directory structure recursively. If any of the file
303      names specified on the command line are directories, `gzip' will
304      descend into the directory and compress all the files it finds
305      there (or decompress them in the case of `gunzip').
306
307 `--rsyncable'
308      While compressing, synchronize the output occasionally based on the
309      input.  This increases size by less than 1 percent most cases, but
310      means that the `rsync' program can take advantage of similarities
311      in the uncompressed input when syncronizing two files compressed
312      with this flag.  `gunzip' cannot tell the difference between a
313      compressed file created with this option, and one created without
314      it.
315
316 `--suffix SUF'
317 `-S SUF'
318      Use suffix `SUF' instead of `.gz'. Any suffix can be given, but
319      suffixes other than `.z' and `.gz' should be avoided to avoid
320      confusion when files are transferred to other systems.  A null
321      suffix forces gunzip to try decompression on all given files
322      regardless of suffix, as in:
323
324           gunzip -S "" *        (*.* for MSDOS)
325
326      Previous versions of gzip used the `.z' suffix. This was changed to
327      avoid a conflict with `pack'.
328
329 `--test'
330 `-t'
331      Test. Check the compressed file integrity.
332
333 `--verbose'
334 `-v'
335      Verbose. Display the name and percentage reduction for each file
336      compressed.
337
338 `--version'
339 `-V'
340      Version. Display the version number and compilation options, then
341      quit.
342
343 `--fast'
344 `--best'
345 `-N'
346      Regulate the speed of compression using the specified digit N,
347      where `-1' or `--fast' indicates the fastest compression method
348      (less compression) and `--best' or `-9' indicates the slowest
349      compression method (optimal compression).  The default compression
350      level is `-6' (that is, biased towards high compression at expense
351      of speed).
352
353 \1f
354 File: gzip.info,  Node: Advanced usage,  Next: Environment,  Prev: Invoking gzip,  Up: Top
355
356 4 Advanced usage
357 ****************
358
359 Multiple compressed files can be concatenated. In this case, `gunzip'
360 will extract all members at once. If one member is damaged, other
361 members might still be recovered after removal of the damaged member.
362 Better compression can be usually obtained if all members are
363 decompressed and then recompressed in a single step.
364
365    This is an example of concatenating `gzip' files:
366
367      gzip -c file1  > foo.gz
368      gzip -c file2 >> foo.gz
369
370    Then
371
372      gunzip -c foo
373
374    is equivalent to
375
376      cat file1 file2
377
378    In case of damage to one member of a `.gz' file, other members can
379 still be recovered (if the damaged member is removed). However, you can
380 get better compression by compressing all members at once:
381
382      cat file1 file2 | gzip > foo.gz
383
384    compresses better than
385
386      gzip -c file1 file2 > foo.gz
387
388    If you want to recompress concatenated files to get better
389 compression, do:
390
391      zcat old.gz | gzip > new.gz
392
393    If a compressed file consists of several members, the uncompressed
394 size and CRC reported by the `--list' option applies to the last member
395 only. If you need the uncompressed size for all members, you can use:
396
397      zcat file.gz | wc -c
398
399    If you wish to create a single archive file with multiple members so
400 that members can later be extracted independently, use an archiver such
401 as `tar' or `zip'. GNU `tar' supports the `-z' option to invoke `gzip'
402 transparently. `gzip' is designed as a complement to `tar', not as a
403 replacement.
404
405 \1f
406 File: gzip.info,  Node: Environment,  Next: Tapes,  Prev: Advanced usage,  Up: Top
407
408 5 Environment
409 *************
410
411 The environment variable `GZIP' can hold a set of default options for
412 `gzip'.  These options are interpreted first and can be overwritten by
413 explicit command line parameters.  For example:
414
415      for sh:    GZIP="-8v --name"; export GZIP
416      for csh:   setenv GZIP "-8v --name"
417      for MSDOS: set GZIP=-8v --name
418
419    On Vax/VMS, the name of the environment variable is `GZIP_OPT', to
420 avoid a conflict with the symbol set for invocation of the program.
421
422 \1f
423 File: gzip.info,  Node: Tapes,  Next: Problems,  Prev: Environment,  Up: Top
424
425 6 Using `gzip' on tapes
426 ***********************
427
428 When writing compressed data to a tape, it is generally necessary to pad
429 the output with zeroes up to a block boundary. When the data is read and
430 the whole block is passed to `gunzip' for decompression, `gunzip'
431 detects that there is extra trailing garbage after the compressed data
432 and emits a warning by default if the garbage contains nonzero bytes.
433 You have to use the `--quiet' option to suppress the warning. This
434 option can be set in the `GZIP' environment variable, as in:
435
436      for sh:    GZIP="-q"  tar -xfz --block-compress /dev/rst0
437      for csh:   (setenv GZIP "-q"; tar -xfz --block-compress /dev/rst0)
438
439    In the above example, `gzip' is invoked implicitly by the `-z'
440 option of GNU `tar'.  Make sure that the same block size (`-b' option
441 of `tar') is used for reading and writing compressed data on tapes.
442 (This example assumes you are using the GNU version of `tar'.)
443
444 \1f
445 File: gzip.info,  Node: Problems,  Next: Copying This Manual,  Prev: Tapes,  Up: Top
446
447 7 Reporting Bugs
448 ****************
449
450 If you find a bug in `gzip', please send electronic mail to
451 <bug-gzip@gnu.org>.  Include the version number, which you can find by
452 running `gzip -V'.  Also include in your message the hardware and
453 operating system, the compiler used to compile `gzip', a description of
454 the bug behavior, and the input to `gzip' that triggered the bug.
455
456 \1f
457 File: gzip.info,  Node: Copying This Manual,  Next: Concept Index,  Prev: Problems,  Up: Top
458
459 Appendix A Copying This Manual
460 ******************************
461
462 * Menu:
463
464 * GNU Free Documentation License::  License for copying this manual.
465
466 \1f
467 File: gzip.info,  Node: GNU Free Documentation License,  Up: Copying This Manual
468
469 A.1 GNU Free Documentation License
470 ==================================
471
472                         Version 1.1, March 2000
473
474      Copyright (C) 2000 Free Software Foundation, Inc.
475      59 Temple Place, Suite 330, Boston, MA  02111-1307, USA
476
477      Everyone is permitted to copy and distribute verbatim copies
478      of this license document, but changing it is not allowed.
479
480   0. PREAMBLE
481
482      The purpose of this License is to make a manual, textbook, or other
483      written document "free" in the sense of freedom: to assure everyone
484      the effective freedom to copy and redistribute it, with or without
485      modifying it, either commercially or noncommercially.  Secondarily,
486      this License preserves for the author and publisher a way to get
487      credit for their work, while not being considered responsible for
488      modifications made by others.
489
490      This License is a kind of "copyleft", which means that derivative
491      works of the document must themselves be free in the same sense.
492      It complements the GNU General Public License, which is a copyleft
493      license designed for free software.
494
495      We have designed this License in order to use it for manuals for
496      free software, because free software needs free documentation: a
497      free program should come with manuals providing the same freedoms
498      that the software does.  But this License is not limited to
499      software manuals; it can be used for any textual work, regardless
500      of subject matter or whether it is published as a printed book.
501      We recommend this License principally for works whose purpose is
502      instruction or reference.
503
504   1. APPLICABILITY AND DEFINITIONS
505
506      This License applies to any manual or other work that contains a
507      notice placed by the copyright holder saying it can be distributed
508      under the terms of this License.  The "Document", below, refers to
509      any such manual or work.  Any member of the public is a licensee,
510      and is addressed as "you".
511
512      A "Modified Version" of the Document means any work containing the
513      Document or a portion of it, either copied verbatim, or with
514      modifications and/or translated into another language.
515
516      A "Secondary Section" is a named appendix or a front-matter
517      section of the Document that deals exclusively with the
518      relationship of the publishers or authors of the Document to the
519      Document's overall subject (or to related matters) and contains
520      nothing that could fall directly within that overall subject.
521      (For example, if the Document is in part a textbook of
522      mathematics, a Secondary Section may not explain any mathematics.)
523      The relationship could be a matter of historical connection with
524      the subject or with related matters, or of legal, commercial,
525      philosophical, ethical or political position regarding them.
526
527      The "Invariant Sections" are certain Secondary Sections whose
528      titles are designated, as being those of Invariant Sections, in
529      the notice that says that the Document is released under this
530      License.
531
532      The "Cover Texts" are certain short passages of text that are
533      listed, as Front-Cover Texts or Back-Cover Texts, in the notice
534      that says that the Document is released under this License.
535
536      A "Transparent" copy of the Document means a machine-readable copy,
537      represented in a format whose specification is available to the
538      general public, whose contents can be viewed and edited directly
539      and straightforwardly with generic text editors or (for images
540      composed of pixels) generic paint programs or (for drawings) some
541      widely available drawing editor, and that is suitable for input to
542      text formatters or for automatic translation to a variety of
543      formats suitable for input to text formatters.  A copy made in an
544      otherwise Transparent file format whose markup has been designed
545      to thwart or discourage subsequent modification by readers is not
546      Transparent.  A copy that is not "Transparent" is called "Opaque".
547
548      Examples of suitable formats for Transparent copies include plain
549      ASCII without markup, Texinfo input format, LaTeX input format,
550      SGML or XML using a publicly available DTD, and
551      standard-conforming simple HTML designed for human modification.
552      Opaque formats include PostScript, PDF, proprietary formats that
553      can be read and edited only by proprietary word processors, SGML
554      or XML for which the DTD and/or processing tools are not generally
555      available, and the machine-generated HTML produced by some word
556      processors for output purposes only.
557
558      The "Title Page" means, for a printed book, the title page itself,
559      plus such following pages as are needed to hold, legibly, the
560      material this License requires to appear in the title page.  For
561      works in formats which do not have any title page as such, "Title
562      Page" means the text near the most prominent appearance of the
563      work's title, preceding the beginning of the body of the text.
564
565   2. VERBATIM COPYING
566
567      You may copy and distribute the Document in any medium, either
568      commercially or noncommercially, provided that this License, the
569      copyright notices, and the license notice saying this License
570      applies to the Document are reproduced in all copies, and that you
571      add no other conditions whatsoever to those of this License.  You
572      may not use technical measures to obstruct or control the reading
573      or further copying of the copies you make or distribute.  However,
574      you may accept compensation in exchange for copies.  If you
575      distribute a large enough number of copies you must also follow
576      the conditions in section 3.
577
578      You may also lend copies, under the same conditions stated above,
579      and you may publicly display copies.
580
581   3. COPYING IN QUANTITY
582
583      If you publish printed copies of the Document numbering more than
584      100, and the Document's license notice requires Cover Texts, you
585      must enclose the copies in covers that carry, clearly and legibly,
586      all these Cover Texts: Front-Cover Texts on the front cover, and
587      Back-Cover Texts on the back cover.  Both covers must also clearly
588      and legibly identify you as the publisher of these copies.  The
589      front cover must present the full title with all words of the
590      title equally prominent and visible.  You may add other material
591      on the covers in addition.  Copying with changes limited to the
592      covers, as long as they preserve the title of the Document and
593      satisfy these conditions, can be treated as verbatim copying in
594      other respects.
595
596      If the required texts for either cover are too voluminous to fit
597      legibly, you should put the first ones listed (as many as fit
598      reasonably) on the actual cover, and continue the rest onto
599      adjacent pages.
600
601      If you publish or distribute Opaque copies of the Document
602      numbering more than 100, you must either include a
603      machine-readable Transparent copy along with each Opaque copy, or
604      state in or with each Opaque copy a publicly-accessible
605      computer-network location containing a complete Transparent copy
606      of the Document, free of added material, which the general
607      network-using public has access to download anonymously at no
608      charge using public-standard network protocols.  If you use the
609      latter option, you must take reasonably prudent steps, when you
610      begin distribution of Opaque copies in quantity, to ensure that
611      this Transparent copy will remain thus accessible at the stated
612      location until at least one year after the last time you
613      distribute an Opaque copy (directly or through your agents or
614      retailers) of that edition to the public.
615
616      It is requested, but not required, that you contact the authors of
617      the Document well before redistributing any large number of
618      copies, to give them a chance to provide you with an updated
619      version of the Document.
620
621   4. MODIFICATIONS
622
623      You may copy and distribute a Modified Version of the Document
624      under the conditions of sections 2 and 3 above, provided that you
625      release the Modified Version under precisely this License, with
626      the Modified Version filling the role of the Document, thus
627      licensing distribution and modification of the Modified Version to
628      whoever possesses a copy of it.  In addition, you must do these
629      things in the Modified Version:
630
631        A. Use in the Title Page (and on the covers, if any) a title
632           distinct from that of the Document, and from those of
633           previous versions (which should, if there were any, be listed
634           in the History section of the Document).  You may use the
635           same title as a previous version if the original publisher of
636           that version gives permission.
637
638        B. List on the Title Page, as authors, one or more persons or
639           entities responsible for authorship of the modifications in
640           the Modified Version, together with at least five of the
641           principal authors of the Document (all of its principal
642           authors, if it has less than five).
643
644        C. State on the Title page the name of the publisher of the
645           Modified Version, as the publisher.
646
647        D. Preserve all the copyright notices of the Document.
648
649        E. Add an appropriate copyright notice for your modifications
650           adjacent to the other copyright notices.
651
652        F. Include, immediately after the copyright notices, a license
653           notice giving the public permission to use the Modified
654           Version under the terms of this License, in the form shown in
655           the Addendum below.
656
657        G. Preserve in that license notice the full lists of Invariant
658           Sections and required Cover Texts given in the Document's
659           license notice.
660
661        H. Include an unaltered copy of this License.
662
663        I. Preserve the section entitled "History", and its title, and
664           add to it an item stating at least the title, year, new
665           authors, and publisher of the Modified Version as given on
666           the Title Page.  If there is no section entitled "History" in
667           the Document, create one stating the title, year, authors,
668           and publisher of the Document as given on its Title Page,
669           then add an item describing the Modified Version as stated in
670           the previous sentence.
671
672        J. Preserve the network location, if any, given in the Document
673           for public access to a Transparent copy of the Document, and
674           likewise the network locations given in the Document for
675           previous versions it was based on.  These may be placed in
676           the "History" section.  You may omit a network location for a
677           work that was published at least four years before the
678           Document itself, or if the original publisher of the version
679           it refers to gives permission.
680
681        K. In any section entitled "Acknowledgments" or "Dedications",
682           preserve the section's title, and preserve in the section all
683           the substance and tone of each of the contributor
684           acknowledgments and/or dedications given therein.
685
686        L. Preserve all the Invariant Sections of the Document,
687           unaltered in their text and in their titles.  Section numbers
688           or the equivalent are not considered part of the section
689           titles.
690
691        M. Delete any section entitled "Endorsements".  Such a section
692           may not be included in the Modified Version.
693
694        N. Do not retitle any existing section as "Endorsements" or to
695           conflict in title with any Invariant Section.
696
697      If the Modified Version includes new front-matter sections or
698      appendices that qualify as Secondary Sections and contain no
699      material copied from the Document, you may at your option
700      designate some or all of these sections as invariant.  To do this,
701      add their titles to the list of Invariant Sections in the Modified
702      Version's license notice.  These titles must be distinct from any
703      other section titles.
704
705      You may add a section entitled "Endorsements", provided it contains
706      nothing but endorsements of your Modified Version by various
707      parties--for example, statements of peer review or that the text
708      has been approved by an organization as the authoritative
709      definition of a standard.
710
711      You may add a passage of up to five words as a Front-Cover Text,
712      and a passage of up to 25 words as a Back-Cover Text, to the end
713      of the list of Cover Texts in the Modified Version.  Only one
714      passage of Front-Cover Text and one of Back-Cover Text may be
715      added by (or through arrangements made by) any one entity.  If the
716      Document already includes a cover text for the same cover,
717      previously added by you or by arrangement made by the same entity
718      you are acting on behalf of, you may not add another; but you may
719      replace the old one, on explicit permission from the previous
720      publisher that added the old one.
721
722      The author(s) and publisher(s) of the Document do not by this
723      License give permission to use their names for publicity for or to
724      assert or imply endorsement of any Modified Version.
725
726   5. COMBINING DOCUMENTS
727
728      You may combine the Document with other documents released under
729      this License, under the terms defined in section 4 above for
730      modified versions, provided that you include in the combination
731      all of the Invariant Sections of all of the original documents,
732      unmodified, and list them all as Invariant Sections of your
733      combined work in its license notice.
734
735      The combined work need only contain one copy of this License, and
736      multiple identical Invariant Sections may be replaced with a single
737      copy.  If there are multiple Invariant Sections with the same name
738      but different contents, make the title of each such section unique
739      by adding at the end of it, in parentheses, the name of the
740      original author or publisher of that section if known, or else a
741      unique number.  Make the same adjustment to the section titles in
742      the list of Invariant Sections in the license notice of the
743      combined work.
744
745      In the combination, you must combine any sections entitled
746      "History" in the various original documents, forming one section
747      entitled "History"; likewise combine any sections entitled
748      "Acknowledgments", and any sections entitled "Dedications".  You
749      must delete all sections entitled "Endorsements."
750
751   6. COLLECTIONS OF DOCUMENTS
752
753      You may make a collection consisting of the Document and other
754      documents released under this License, and replace the individual
755      copies of this License in the various documents with a single copy
756      that is included in the collection, provided that you follow the
757      rules of this License for verbatim copying of each of the
758      documents in all other respects.
759
760      You may extract a single document from such a collection, and
761      distribute it individually under this License, provided you insert
762      a copy of this License into the extracted document, and follow
763      this License in all other respects regarding verbatim copying of
764      that document.
765
766   7. AGGREGATION WITH INDEPENDENT WORKS
767
768      A compilation of the Document or its derivatives with other
769      separate and independent documents or works, in or on a volume of
770      a storage or distribution medium, does not as a whole count as a
771      Modified Version of the Document, provided no compilation
772      copyright is claimed for the compilation.  Such a compilation is
773      called an "aggregate", and this License does not apply to the
774      other self-contained works thus compiled with the Document, on
775      account of their being thus compiled, if they are not themselves
776      derivative works of the Document.
777
778      If the Cover Text requirement of section 3 is applicable to these
779      copies of the Document, then if the Document is less than one
780      quarter of the entire aggregate, the Document's Cover Texts may be
781      placed on covers that surround only the Document within the
782      aggregate.  Otherwise they must appear on covers around the whole
783      aggregate.
784
785   8. TRANSLATION
786
787      Translation is considered a kind of modification, so you may
788      distribute translations of the Document under the terms of section
789      4.  Replacing Invariant Sections with translations requires special
790      permission from their copyright holders, but you may include
791      translations of some or all Invariant Sections in addition to the
792      original versions of these Invariant Sections.  You may include a
793      translation of this License provided that you also include the
794      original English version of this License.  In case of a
795      disagreement between the translation and the original English
796      version of this License, the original English version will prevail.
797
798   9. TERMINATION
799
800      You may not copy, modify, sublicense, or distribute the Document
801      except as expressly provided for under this License.  Any other
802      attempt to copy, modify, sublicense or distribute the Document is
803      void, and will automatically terminate your rights under this
804      License.  However, parties who have received copies, or rights,
805      from you under this License will not have their licenses
806      terminated so long as such parties remain in full compliance.
807
808  10. FUTURE REVISIONS OF THIS LICENSE
809
810      The Free Software Foundation may publish new, revised versions of
811      the GNU Free Documentation License from time to time.  Such new
812      versions will be similar in spirit to the present version, but may
813      differ in detail to address new problems or concerns.  See
814      `http://www.gnu.org/copyleft/'.
815
816      Each version of the License is given a distinguishing version
817      number.  If the Document specifies that a particular numbered
818      version of this License "or any later version" applies to it, you
819      have the option of following the terms and conditions either of
820      that specified version or of any later version that has been
821      published (not as a draft) by the Free Software Foundation.  If
822      the Document does not specify a version number of this License,
823      you may choose any version ever published (not as a draft) by the
824      Free Software Foundation.
825
826 A.1.1 ADDENDUM: How to use this License for your documents
827 ----------------------------------------------------------
828
829 To use this License in a document you have written, include a copy of
830 the License in the document and put the following copyright and license
831 notices just after the title page:
832
833        Copyright (C)  YEAR  YOUR NAME.
834        Permission is granted to copy, distribute and/or modify this document
835        under the terms of the GNU Free Documentation License, Version 1.1
836        or any later version published by the Free Software Foundation;
837        with the Invariant Sections being LIST THEIR TITLES, with the
838        Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
839        A copy of the license is included in the section entitled ``GNU
840        Free Documentation License''.
841
842    If you have no Invariant Sections, write "with no Invariant Sections"
843 instead of saying which ones are invariant.  If you have no Front-Cover
844 Texts, write "no Front-Cover Texts" instead of "Front-Cover Texts being
845 LIST"; likewise for Back-Cover Texts.
846
847    If your document contains nontrivial examples of program code, we
848 recommend releasing these examples in parallel under your choice of
849 free software license, such as the GNU General Public License, to
850 permit their use in free software.
851
852 \1f
853 File: gzip.info,  Node: Concept Index,  Prev: Copying This Manual,  Up: Top
854
855 Appendix B Concept Index
856 ************************
857
858 \0\b[index\0\b]
859 * Menu:
860
861 * bugs:                                  Problems.              (line 6)
862 * concatenated files:                    Advanced usage.        (line 6)
863 * Environment:                           Environment.           (line 6)
864 * FDL, GNU Free Documentation License:   GNU Free Documentation License.
865                                                                 (line 6)
866 * invoking:                              Invoking gzip.         (line 6)
867 * options:                               Invoking gzip.         (line 6)
868 * overview:                              Overview.              (line 6)
869 * sample:                                Sample.                (line 6)
870 * tapes:                                 Tapes.                 (line 6)
871
872
873 \1f
874 Tag Table:
875 Node: Top\7f1170
876 Node: Overview\7f2609
877 Node: Sample\7f7370
878 Node: Invoking gzip\7f9032
879 Node: Advanced usage\7f14463
880 Node: Environment\7f16053
881 Node: Tapes\7f16622
882 Node: Problems\7f17637
883 Node: Copying This Manual\7f18096
884 Node: GNU Free Documentation License\7f18334
885 Node: Concept Index\7f38211
886 \1f
887 End Tag Table