merge patch in support of reproducible builds
[debian/gzip] / doc / gzip.texi
1 \input texinfo @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename gzip.info
4 @include version.texi
5 @settitle GNU Gzip
6 @finalout
7 @setchapternewpage odd
8 @c %**end of header
9 @copying
10 This manual is for GNU Gzip (version @value{VERSION}),
11 and documents commands for compressing and decompressing data.
12
13 Copyright @copyright{} 1998-1999, 2001-2002, 2006-2007, 2009-2013 Free Software
14 Foundation, Inc.
15
16 Copyright @copyright{} 1992, 1993 Jean-loup Gailly
17
18 @quotation
19 Permission is granted to copy, distribute and/or modify this document
20 under the terms of the GNU Free Documentation License, Version 1.3 or
21 any later version published by the Free Software Foundation; with no
22 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
23 Texts.  A copy of the license is included in the section entitled ``GNU
24 Free Documentation License''.
25 @end quotation
26 @end copying
27
28 @dircategory Compression
29 @direntry
30 * Gzip: (gzip).                 General (de)compression of files (lzw).
31 @end direntry
32
33 @dircategory Individual utilities
34 @direntry
35 * gunzip: (gzip)Overview.                       Decompression.
36 * gzexe: (gzip)Overview.                        Compress executables.
37 * zcat: (gzip)Overview.                         Decompression to stdout.
38 * zdiff: (gzip)Overview.                        Compare compressed files.
39 * zforce: (gzip)Overview.                       Force .gz extension on files.
40 * zgrep: (gzip)Overview.                        Search compressed files.
41 * zmore: (gzip)Overview.                        Decompression output by pages.
42 @end direntry
43
44 @titlepage
45 @title GNU gzip
46 @subtitle The data compression program
47 @subtitle for Gzip version @value{VERSION}
48 @subtitle @value{UPDATED}
49 @author by Jean-loup Gailly
50
51 @page
52 @vskip 0pt plus 1filll
53 @insertcopying
54 @end titlepage
55
56 @contents
57
58 @ifnottex
59 @node Top
60 @top GNU Gzip: General file (de)compression
61
62 @insertcopying
63 @end ifnottex
64
65 @menu
66 * Overview::            Preliminary information.
67 * Sample::              Sample output from @command{gzip}.
68 * Invoking gzip::       How to run @command{gzip}.
69 * Advanced usage::      Concatenated files.
70 * Environment::         The @env{GZIP} environment variable
71 * Tapes::               Using @command{gzip} on tapes.
72 * Problems::            Reporting bugs.
73 * GNU Free Documentation License:: Copying and sharing this manual.
74 * Concept index::       Index of concepts.
75 @end menu
76
77 @node Overview
78 @chapter Overview
79 @cindex overview
80
81 @command{gzip} reduces the size of the named files using Lempel-Ziv coding
82 (LZ77).  Whenever possible, each file is replaced by one with the
83 extension @samp{.gz}, while keeping the same ownership modes, access and
84 modification times.  (The default extension is @samp{-gz} for @abbr{VMS},
85 @samp{z} for @abbr{MSDOS}, @abbr{OS/2} @abbr{FAT} and Atari.)
86 If no files are specified or
87 if a file name is "-", the standard input is compressed to the standard
88 output.  @command{gzip} will only attempt to compress regular files.  In
89 particular, it will ignore symbolic links.
90
91 If the new file name is too long for its file system, @command{gzip}
92 truncates it.  @command{gzip} attempts to truncate only the parts of the
93 file name longer than 3 characters.  (A part is delimited by dots.) If
94 the name consists of small parts only, the longest parts are truncated.
95 For example, if file names are limited to 14 characters, gzip.msdos.exe
96 is compressed to gzi.msd.exe.gz.  Names are not truncated on systems
97 which do not have a limit on file name length.
98
99 By default, @command{gzip} keeps the original file name and time stamp in
100 the compressed file.  These are used when decompressing the file with the
101 @option{-N} option.  This is useful when the compressed file name was
102 truncated or when the time stamp was not preserved after a file
103 transfer.  However, due to limitations in the current @command{gzip} file
104 format, fractional seconds are discarded.  Also, time stamps must fall
105 within the range 1970-01-01 00:00:00 through 2106-02-07 06:28:15
106 @abbr{UTC}, and hosts whose operating systems use 32-bit time
107 stamps are further restricted to time stamps no later than 2038-01-19
108 03:14:07 @abbr{UTC}.  The upper bounds assume the typical case
109 where leap seconds are ignored.
110
111 Compressed files can be restored to their original form using @samp{gzip -d}
112 or @command{gunzip} or @command{zcat}.  If the original name saved in the
113 compressed file is not suitable for its file system, a new name is
114 constructed from the original one to make it legal.
115
116 @command{gunzip} takes a list of files on its command line and replaces
117 each file whose name ends with @samp{.gz}, @samp{.z}
118 @samp{-gz}, @samp{-z}, or @samp{_z} (ignoring case)
119 and which begins with the correct
120 magic number with an uncompressed file without the original extension.
121 @command{gunzip} also recognizes the special extensions @samp{.tgz} and
122 @samp{.taz} as shorthands for @samp{.tar.gz} and @samp{.tar.Z}
123 respectively.  When compressing, @command{gzip} uses the @samp{.tgz}
124 extension if necessary instead of truncating a file with a @samp{.tar}
125 extension.
126
127 @command{gunzip} can currently decompress files created by @command{gzip},
128 @command{zip}, @command{compress} or @command{pack}.  The detection of the input
129 format is automatic.  When using the first two formats, @command{gunzip}
130 checks a 32 bit @abbr{CRC} (cyclic redundancy check).  For @command{pack},
131 @command{gunzip} checks the uncompressed length.  The @command{compress} format
132 was not designed to allow consistency checks.  However @command{gunzip} is
133 sometimes able to detect a bad @samp{.Z} file.  If you get an error when
134 uncompressing a @samp{.Z} file, do not assume that the @samp{.Z} file is
135 correct simply because the standard @command{uncompress} does not complain.
136 This generally means that the standard @command{uncompress} does not check
137 its input, and happily generates garbage output.  The @abbr{SCO} @samp{compress
138 -H} format (@abbr{LZH} compression method) does not include a @abbr{CRC} but
139 also allows some consistency checks.
140
141 Files created by @command{zip} can be uncompressed by @command{gzip} only if
142 they have a single member compressed with the 'deflation' method.  This
143 feature is only intended to help conversion of @file{tar.zip} files to
144 the @file{tar.gz} format.  To extract a @command{zip} file with a single
145 member, use a command like @samp{gunzip <foo.zip} or @samp{gunzip -S
146 .zip foo.zip}.  To extract @command{zip} files with several
147 members, use @command{unzip} instead of @command{gunzip}.
148
149 @command{zcat} is identical to @samp{gunzip -c}.  @command{zcat}
150 uncompresses either a list of files on the command line or its standard
151 input and writes the uncompressed data on standard output.  @command{zcat}
152 will uncompress files that have the correct magic number whether they
153 have a @samp{.gz} suffix or not.
154
155 @command{gzip} uses the Lempel-Ziv algorithm used in @command{zip} and
156 @abbr{PKZIP}@.
157 The amount of compression obtained depends on the size of the input and
158 the distribution of common substrings.  Typically, text such as source
159 code or English is reduced by 60-70%.  Compression is generally much
160 better than that achieved by @abbr{LZW} (as used in @command{compress}), Huffman
161 coding (as used in @command{pack}), or adaptive Huffman coding
162 (@command{compact}).
163
164 Compression is always performed, even if the compressed file is slightly
165 larger than the original.  The worst case expansion is a few bytes for
166 the @command{gzip} file header, plus 5 bytes every 32K block, or an expansion
167 ratio of 0.015% for large files.  Note that the actual number of used
168 disk blocks almost never increases.  @command{gzip} normally preserves the mode,
169 ownership and time stamps of files when compressing or decompressing.
170
171 The @command{gzip} file format is specified in P. Deutsch, @sc{gzip} file
172 format specification version 4.3,
173 @uref{http://www.ietf.org/rfc/rfc1952.txt, Internet @abbr{RFC} 1952} (May
174 1996).  The @command{zip} deflation format is specified in P. Deutsch,
175 @sc{deflate} Compressed Data Format Specification version 1.3,
176 @uref{http://www.ietf.org/rfc/rfc1951.txt, Internet @abbr{RFC} 1951} (May
177 1996).
178
179 @node Sample
180 @chapter Sample output
181 @cindex sample
182
183 Here are some realistic examples of running @command{gzip}.
184
185 This is the output of the command @samp{gzip -h}:
186
187 @example
188 Usage: gzip [OPTION]... [FILE]...
189 Compress or uncompress FILEs (by default, compress FILES in-place).
190
191 Mandatory arguments to long options are mandatory for short options too.
192
193   -c, --stdout      write on standard output, keep original files unchanged
194   -d, --decompress  decompress
195   -f, --force       force overwrite of output file and compress links
196   -h, --help        give this help
197   -k, --keep        keep (don't delete) input files
198   -l, --list        list compressed file contents
199   -L, --license     display software license
200   -n, --no-name     do not save or restore the original name and time stamp
201   -N, --name        save or restore the original name and time stamp
202   -q, --quiet       suppress all warnings
203   -r, --recursive   operate recursively on directories
204   -S, --suffix=SUF  use suffix SUF on compressed files
205   -t, --test        test compressed file integrity
206   -v, --verbose     verbose mode
207   -V, --version     display version number
208   -1, --fast        compress faster
209   -9, --best        compress better
210     --rsyncable   Make rsync-friendly archive
211
212 With no FILE, or when FILE is -, read standard input.
213
214 Report bugs to <bug-gzip@@gnu.org>.
215 @end example
216
217 This is the output of the command @samp{gzip -v texinfo.tex}:
218
219 @example
220 texinfo.tex:     69.3% -- replaced with texinfo.tex.gz
221 @end example
222
223 The following command will find all regular @samp{.gz} files in the
224 current directory and subdirectories (skipping file names that contain
225 newlines), and extract them in place without destroying the original,
226 stopping on the first failure:
227
228 @example
229 find . -name '*
230 *' -prune -o -name '*.gz' -type f -print |
231   sed "
232     s/'/'\\\\''/g
233     s/^\\(.*\\)\\.gz$/gunzip <'\\1.gz' >'\\1'/
234   " |
235   sh -e
236 @end example
237
238 @node Invoking gzip
239 @chapter Invoking @command{gzip}
240 @cindex invoking
241 @cindex options
242
243 The format for running the @command{gzip} program is:
244
245 @example
246 gzip @var{option} @dots{}
247 @end example
248
249 @command{gzip} supports the following options:
250
251 @table @option
252 @item --stdout
253 @itemx --to-stdout
254 @itemx -c
255 Write output on standard output; keep original files unchanged.
256 If there are several input files, the output consists of a sequence of
257 independently compressed members.  To obtain better compression,
258 concatenate all input files before compressing them.
259
260 @item --decompress
261 @itemx --uncompress
262 @itemx -d
263 Decompress.
264
265 @item --force
266 @itemx -f
267 Force compression or decompression even if the file has multiple links
268 or the corresponding file already exists, or if the compressed data
269 is read from or written to a terminal.  If the input data is not in
270 a format recognized by @command{gzip}, and if the option @option{--stdout} is also
271 given, copy the input data without change to the standard output: let
272 @command{zcat} behave as @command{cat}.  If @option{-f} is not given, and
273 when not running in the background, @command{gzip} prompts to verify
274 whether an existing file should be overwritten.
275
276 @item --help
277 @itemx -h
278 Print an informative help message describing the options then quit.
279
280 @item --keep
281 @itemx -k
282 Keep (don't delete) input files during compression or decompression.
283
284 @item --list
285 @itemx -l
286 For each compressed file, list the following fields:
287
288 @example
289 compressed size: size of the compressed file
290 uncompressed size: size of the uncompressed file
291 ratio: compression ratio (0.0% if unknown)
292 uncompressed_name: name of the uncompressed file
293 @end example
294
295 The uncompressed size is given as @minus{}1 for files not in @command{gzip}
296 format, such as compressed @samp{.Z} files.  To get the uncompressed size for
297 such a file, you can use:
298
299 @example
300 zcat file.Z | wc -c
301 @end example
302
303 In combination with the @option{--verbose} option, the following fields are also
304 displayed:
305
306 @example
307 method: compression method (deflate,compress,lzh,pack)
308 crc: the 32-bit CRC of the uncompressed data
309 date & time: time stamp for the uncompressed file
310 @end example
311
312 The @abbr{CRC} is given as ffffffff for a file not in gzip format.
313
314 With @option{--verbose}, the size totals and compression ratio for all files
315 is also displayed, unless some sizes are unknown.  With @option{--quiet},
316 the title and totals lines are not displayed.
317
318 The @command{gzip} format represents the input size modulo
319 @math{2^32}, so the uncompressed size and compression ratio are listed
320 incorrectly for uncompressed files 4 GiB and larger.  To work around
321 this problem, you can use the following command to discover a large
322 uncompressed file's true size:
323
324 @example
325 zcat file.gz | wc -c
326 @end example
327
328 @item --license
329 @itemx -L
330 Display the @command{gzip} license then quit.
331
332 @item --no-name
333 @itemx -n
334 When compressing, do not save the original file name and time stamp by
335 default.  (The original name is always saved if the name had to be
336 truncated.)  When decompressing, do not restore the original file name
337 if present (remove only the @command{gzip}
338 suffix from the compressed file name) and do not restore the original
339 time stamp if present (copy it from the compressed file).  This option
340 is the default when decompressing.
341
342 @item --name
343 @itemx -N
344 When compressing, always save the original file name and time stamp; this
345 is the default.  When decompressing, restore the original file name and
346 time stamp if present.  This option is useful on systems which have
347 a limit on file name length or when the time stamp has been lost after
348 a file transfer.
349
350 @item --quiet
351 @itemx -q
352 Suppress all warning messages.
353
354 @item --recursive
355 @itemx -r
356 Travel the directory structure recursively.  If any of the file names
357 specified on the command line are directories, @command{gzip} will descend
358 into the directory and compress all the files it finds there (or
359 decompress them in the case of @command{gunzip}).
360
361 @item --rsyncable
362 While compressing, synchronize the output occasionally based on
363 the input.  This increases size by less than 1 percent most
364 cases, but means that the @command{rsync} program can much more efficiently
365 synchronize files compressed with this flag.  @command{gunzip}
366 cannot tell the difference between a compressed file created
367 with this option, and one created without it.
368
369 @item --suffix @var{suf}
370 @itemx -S @var{suf}
371 Use suffix @var{suf} instead of @samp{.gz}.  Any suffix can be
372 given, but suffixes other than @samp{.z} and @samp{.gz} should be
373 avoided to avoid confusion when files are transferred to other systems.
374 A null suffix forces gunzip to try decompression on all given files
375 regardless of suffix, as in:
376
377 @example
378 gunzip -S "" *        (*.* for MSDOS)
379 @end example
380
381 Previous versions of gzip used the @samp{.z} suffix.  This was changed to
382 avoid a conflict with @command{pack}.
383
384 @item --test
385 @itemx -t
386 Test.  Check the compressed file integrity.
387
388 @item --verbose
389 @itemx -v
390 Verbose.  Display the name and percentage reduction for each file compressed.
391
392 @item --version
393 @itemx -V
394 Version.  Display the version number and compilation options, then quit.
395
396 @item --fast
397 @itemx --best
398 @itemx -@var{n}
399 Regulate the speed of compression using the specified digit @var{n},
400 where @option{-1} or @option{--fast} indicates the fastest compression
401 method (less compression) and @option{--best} or @option{-9} indicates the
402 slowest compression method (optimal compression).  The default
403 compression level is @option{-6} (that is, biased towards high compression at
404 expense of speed).
405 @end table
406
407 @node Advanced usage
408 @chapter Advanced usage
409 @cindex concatenated files
410
411 Multiple compressed files can be concatenated.  In this case,
412 @command{gunzip} will extract all members at once.  If one member is
413 damaged, other members might still be recovered after removal of the
414 damaged member.  Better compression can be usually obtained if all
415 members are decompressed and then recompressed in a single step.
416
417 This is an example of concatenating @command{gzip} files:
418
419 @example
420 gzip -c file1  > foo.gz
421 gzip -c file2 >> foo.gz
422 @end example
423
424 @noindent
425 Then
426
427 @example
428 gunzip -c foo
429 @end example
430
431 @noindent
432 is equivalent to
433
434 @example
435 cat file1 file2
436 @end example
437
438 In case of damage to one member of a @samp{.gz} file, other members can
439 still be recovered (if the damaged member is removed).  However,
440 you can get better compression by compressing all members at once:
441
442 @example
443 cat file1 file2 | gzip > foo.gz
444 @end example
445
446 @noindent
447 compresses better than
448
449 @example
450 gzip -c file1 file2 > foo.gz
451 @end example
452
453 If you want to recompress concatenated files to get better compression, do:
454
455 @example
456 zcat old.gz | gzip > new.gz
457 @end example
458
459 If a compressed file consists of several members, the uncompressed
460 size and @abbr{CRC} reported by the @option{--list} option applies to
461 the last member
462 only.  If you need the uncompressed size for all members, you can use:
463
464 @example
465 zcat file.gz | wc -c
466 @end example
467
468 If you wish to create a single archive file with multiple members so
469 that members can later be extracted independently, use an archiver such
470 as @command{tar} or @command{zip}.  @acronym{GNU} @command{tar}
471 supports the @option{-z}
472 option to invoke @command{gzip} transparently.  @command{gzip} is designed as a
473 complement to @command{tar}, not as a replacement.
474
475 @node Environment
476 @chapter Environment
477 @cindex Environment
478
479 The environment variable @env{GZIP} can hold a set of default options for
480 @command{gzip}.  These options are interpreted first and can be overwritten by
481 explicit command line parameters.  For example:
482
483 @example
484 for sh:    GZIP="-8v --name"; export GZIP
485 for csh:   setenv GZIP "-8v --name"
486 for MSDOS: set GZIP=-8v --name
487 @end example
488
489 On @abbr{VMS}, the name of the environment variable is @env{GZIP_OPT}, to
490 avoid a conflict with the symbol set for invocation of the program.
491
492 @node Tapes
493 @chapter Using @command{gzip} on tapes
494 @cindex tapes
495
496 When writing compressed data to a tape, it is generally necessary to pad
497 the output with zeroes up to a block boundary.  When the data is read and
498 the whole block is passed to @command{gunzip} for decompression,
499 @command{gunzip} detects that there is extra trailing garbage after the
500 compressed data and emits a warning by default if the garbage contains
501 nonzero bytes.  You have to use the
502 @option{--quiet} option to suppress the warning.  This option can be set in the
503 @env{GZIP} environment variable, as in:
504
505 @example
506 for sh:    GZIP="-q"  tar -xfz --block-compress /dev/rst0
507 for csh:   (setenv GZIP "-q"; tar -xfz --block-compress /dev/rst0)
508 @end example
509
510 In the above example, @command{gzip} is invoked implicitly by the @option{-z}
511 option of @acronym{GNU} @command{tar}.  Make sure that the same block
512 size (@option{-b}
513 option of @command{tar}) is used for reading and writing compressed data on
514 tapes.  (This example assumes you are using the @acronym{GNU} version of
515 @command{tar}.)
516
517 @node Problems
518 @chapter Reporting Bugs
519 @cindex bugs
520
521 If you find a bug in @command{gzip}, please send electronic mail to
522 @email{bug-gzip@@gnu.org}.  Include the version number,
523 which you can find by running @w{@samp{gzip -V}}.  Also include in your
524 message the hardware and operating system, the compiler used to compile
525 @command{gzip},
526 a description of the bug behavior, and the input to @command{gzip}
527 that triggered
528 the bug.@refill
529
530 @node GNU Free Documentation License
531 @appendix GNU Free Documentation License
532
533 @include fdl.texi
534
535 @node Concept index
536 @appendix Concept index
537
538 @printindex cp
539
540 @bye