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