gzip: fix problem with s390 buffer flushes
[gzip.git] / doc / gzip.texi
blobcc05b60efdde93b06fd6e01b92040e2665733606
1 \input texinfo @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename gzip.info
4 @documentencoding UTF-8
5 @include version.texi
6 @settitle GNU Gzip
7 @finalout
8 @setchapternewpage odd
9 @c %**end of header
10 @copying
11 This manual is for GNU Gzip
12 (version @value{VERSION}, @value{UPDATED}),
13 and documents commands for compressing and decompressing data.
15 Copyright @copyright{} 1998--1999, 2001--2002, 2006--2007, 2009--2025 Free
16 Software Foundation, Inc.
18 Copyright @copyright{} 1992, 1993 Jean-loup Gailly
20 @quotation
21 Permission is granted to copy, distribute and/or modify this document
22 under the terms of the GNU Free Documentation License, Version 1.3 or
23 any later version published by the Free Software Foundation; with no
24 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
25 Texts.  A copy of the license is included in the section entitled ``GNU
26 Free Documentation License''.
27 @end quotation
28 @end copying
30 @dircategory Compression
31 @direntry
32 * Gzip: (gzip).                 General (de)compression of files (lzw).
33 @end direntry
35 @dircategory Individual utilities
36 @direntry
37 * gunzip: (gzip)Overview.                       Decompression.
38 * gzexe: (gzip)Overview.                        Compress executables.
39 * zcat: (gzip)Overview.                         Decompression to stdout.
40 * zdiff: (gzip)Overview.                        Compare compressed files.
41 * zforce: (gzip)Overview.                       Force .gz extension on files.
42 * zgrep: (gzip)Overview.                        Search compressed files.
43 * zmore: (gzip)Overview.                        Decompression output by pages.
44 @end direntry
46 @titlepage
47 @title GNU gzip
48 @subtitle The data compression program
49 @subtitle for Gzip version @value{VERSION}
50 @subtitle @value{UPDATED}
51 @author by Jean-loup Gailly
53 @page
54 @vskip 0pt plus 1filll
55 @insertcopying
56 @end titlepage
58 @contents
60 @ifnottex
61 @node Top
62 @top GNU Gzip: General file (de)compression
64 @insertcopying
65 @end ifnottex
67 @menu
68 * Overview::            Preliminary information.
69 * Sample::              Sample output from @command{gzip}.
70 * Invoking gzip::       How to run @command{gzip}.
71 * Advanced usage::      Concatenated files.
72 * Environment::         Environment variables.
73 * Tapes::               Using @command{gzip} on tapes.
74 * Problems::            Reporting bugs.
75 * GNU Free Documentation License:: Copying and sharing this manual.
76 * Concept index::       Index of concepts.
77 @end menu
79 @node Overview
80 @chapter Overview
81 @cindex overview
83 @command{gzip} reduces the size of the named files using Lempel--Ziv coding
84 (LZ77).  Whenever possible, each file is replaced by one with the
85 extension @samp{.gz}, while keeping the same ownership modes, access and
86 modification times.  (The default extension is
87 @samp{z} for @abbr{MSDOS}, @abbr{OS/2} @abbr{FAT} and Atari.)
88 If no files are specified or
89 if a file name is @file{-}, the standard input is compressed to the standard
90 output.  @command{gzip} will only attempt to compress regular files.  In
91 particular, it will ignore symbolic links.
93 If the new file name is too long for its file system, @command{gzip}
94 truncates it.  @command{gzip} attempts to truncate only the parts of the
95 file name longer than 3 characters.  (A part is delimited by dots.) If
96 the name consists of small parts only, the longest parts are truncated.
97 For example, if file names are limited to 14 characters, gzip.msdos.exe
98 is compressed to gzi.msd.exe.gz.  Names are not truncated on systems
99 which do not have a limit on file name length.
101 By default, @command{gzip} keeps the original file name in the
102 compressed file.  This can be useful when decompressing the file with
103 @option{-N} if the compressed file name was truncated after a file
104 transfer.
106 If the original is a regular file, @command{gzip} by default keeps its
107 timestamp in the compressed file.  This can be useful when
108 decompressing the file with @option{-N} if the timestamp was not
109 preserved after a file transfer.
110 However, due to limitations in the current @command{gzip} file
111 format, fractional seconds are discarded.  Also, timestamps must fall
112 within the range 1970-01-01 00:00:01 through 2106-02-07 06:28:15
113 @abbr{UTC}, and hosts whose operating systems use 32-bit timestamps
114 are further restricted to timestamps no later than 2038-01-19
115 03:14:07 @abbr{UTC}.  The upper bounds assume the typical case
116 where leap seconds are ignored.
118 Compressed files can be restored to their original form using @samp{gzip -d}
119 or @command{gunzip} or @command{zcat}.  If the original name saved in the
120 compressed file is not suitable for its file system, a new name is
121 constructed from the original one to make it legal.
123 @command{gunzip} takes a list of files on its command line and replaces
124 each file whose name ends with @samp{.gz}, @samp{.z}
125 @samp{-gz}, @samp{-z}, or @samp{_z} (ignoring case)
126 and which begins with the correct
127 magic number with an uncompressed file without the original extension.
128 @command{gunzip} also recognizes the special extensions @samp{.tgz} and
129 @samp{.taz} as shorthands for @samp{.tar.gz} and @samp{.tar.Z}
130 respectively.  When compressing, @command{gzip} uses the @samp{.tgz}
131 extension if necessary instead of truncating a file with a @samp{.tar}
132 extension.
134 @command{gunzip} can currently decompress files created by @command{gzip},
135 @command{zip}, @command{compress} or @command{pack}.  The detection of the input
136 format is automatic.  When using the first two formats, @command{gunzip}
137 checks a 32 bit @abbr{CRC} (cyclic redundancy check).  For @command{pack},
138 @command{gunzip} checks the uncompressed length.  The @command{compress} format
139 was not designed to allow consistency checks.  However @command{gunzip} is
140 sometimes able to detect a bad @samp{.Z} file.  If you get an error when
141 uncompressing a @samp{.Z} file, do not assume that the @samp{.Z} file is
142 correct simply because the standard @command{uncompress} does not complain.
143 This generally means that the standard @command{uncompress} does not check
144 its input, and happily generates garbage output.  The @abbr{SCO} @samp{compress
145 -H} format (@abbr{LZH} compression method) does not include a @abbr{CRC} but
146 also allows some consistency checks.
148 Files created by @command{zip} can be uncompressed by @command{gzip} only if
149 they have a single member compressed with the ``deflation'' method.  This
150 feature is only intended to help conversion of @file{tar.zip} files to
151 the @file{tar.gz} format.  To extract a @command{zip} file with a single
152 member, use a command like @samp{gunzip <foo.zip} or @samp{gunzip -S
153 .zip foo.zip}.  To extract @command{zip} files with several
154 members, use @command{unzip} instead of @command{gunzip}.
156 @command{zcat} is identical to @samp{gunzip -c}.  @command{zcat}
157 uncompresses either a list of files on the command line or its standard
158 input and writes the uncompressed data on standard output.  @command{zcat}
159 will uncompress files that have the correct magic number whether they
160 have a @samp{.gz} suffix or not.
162 @command{gzip} uses the Lempel--Ziv algorithm used in @command{zip} and
163 @abbr{PKZIP}@.
164 The amount of compression obtained depends on the size of the input and
165 the distribution of common substrings.  Typically, text such as source
166 code or English is reduced by 60--70%.  Compression is generally much
167 better than that achieved by @abbr{LZW} (as used in @command{compress}), Huffman
168 coding (as used in @command{pack}), or adaptive Huffman coding
169 (@command{compact}).
171 Compression is always performed, even if the compressed file is slightly
172 larger than the original.  The worst case expansion is a few bytes for
173 the @command{gzip} file header, plus 5 bytes per 32@tie{}KiB block, or
174 an expansion ratio of 0.015% for large files.  The actual number of
175 used disk blocks almost never increases.
177 @command{gzip} normally preserves the mode and modification timestamp
178 of a file when compressing or decompressing.  If you have appropriate
179 privileges, it also preserves the file's owner and group.
181 The @command{gzip} file format is specified in P. Deutsch, GZIP file
182 format specification version 4.3,
183 @uref{https://www.ietf.org/rfc/rfc1952.txt, Internet @abbr{RFC} 1952} (May
184 1996).  The @command{zip} deflation format is specified in P. Deutsch,
185 DEFLATE Compressed Data Format Specification version 1.3,
186 @uref{https://www.ietf.org/rfc/rfc1951.txt, Internet @abbr{RFC} 1951} (May
187 1996).
189 @node Sample
190 @chapter Sample output
191 @cindex sample
193 Here are some realistic examples of running @command{gzip}.
195 This is the output of the command @samp{gzip -h}:
197 @example
198 Usage: gzip [OPTION]... [FILE]...
199 Compress or uncompress FILEs (by default, compress FILES in-place).
201 Mandatory arguments to long options are mandatory for short options too.
203   -c, --stdout      write on standard output, keep original files unchanged
204   -d, --decompress  decompress
205   -f, --force       force overwrite of output file and compress links
206   -h, --help        give this help
207   -k, --keep        keep (don't delete) input files
208   -l, --list        list compressed file contents
209   -L, --license     display software license
210   -n, --no-name     do not save or restore the original name and timestamp
211   -N, --name        save or restore the original name and timestamp
212   -q, --quiet       suppress all warnings
213   -r, --recursive   operate recursively on directories
214       --rsyncable   make rsync-friendly archive
215   -S, --suffix=SUF  use suffix SUF on compressed files
216       --synchronous synchronous output (safer if system crashes, but slower)
217   -t, --test        test compressed file integrity
218   -v, --verbose     verbose mode
219   -V, --version     display version number
220   -1, --fast        compress faster
221   -9, --best        compress better
223 With no FILE, or when FILE is -, read standard input.
225 Report bugs to <bug-gzip@@gnu.org>.
226 @end example
228 This is the output of the command @samp{gzip -v texinfo.tex}:
230 @example
231 texinfo.tex:     69.3% -- replaced with texinfo.tex.gz
232 @end example
234 The following command will find all regular @samp{.gz} files in the
235 current directory and subdirectories (skipping file names that contain
236 newlines), and extract them in place without destroying the original,
237 stopping on the first failure:
239 @example
240 find . -name '*
241 *' -prune -o -name '*.gz' -type f -print |
242   sed "
243     s/'/'\\\\''/g
244     s/^\\(.*\\)\\.gz$/gunzip <'\\1.gz' >'\\1'/
245   " |
246   sh -e
247 @end example
249 @node Invoking gzip
250 @chapter Invoking @command{gzip}
251 @cindex invoking
252 @cindex options
254 The format for running the @command{gzip} program is:
256 @example
257 gzip @var{option} @dots{}
258 @end example
260 @command{gzip} supports the following options:
262 @table @option
263 @item --stdout
264 @itemx --to-stdout
265 @itemx -c
266 Write output on standard output; keep original files unchanged.
267 If there are several input files, the output consists of a sequence of
268 independently compressed members.  To obtain better compression,
269 concatenate all input files before compressing them.
271 @item --decompress
272 @itemx --uncompress
273 @itemx -d
274 Decompress.
276 @item --force
277 @itemx -f
278 Force compression or decompression even if the file has multiple links
279 or the corresponding file already exists, or if the compressed data
280 is read from or written to a terminal.  If the input data is not in
281 a format recognized by @command{gzip}, and if the option @option{--stdout} is also
282 given, copy the input data without change to the standard output: let
283 @command{zcat} behave as @command{cat}.  If @option{-f} is not given, and
284 when not running in the background, @command{gzip} prompts to verify
285 whether an existing file should be overwritten.
287 @item --help
288 @itemx -h
289 Print an informative help message describing the options then quit.
291 @item --keep
292 @itemx -k
293 Keep (don't delete) input files during compression or decompression.
295 @item --list
296 @itemx -l
297 For each compressed file, list the following fields:
299 @example
300 compressed size: size of the compressed file
301 uncompressed size: size of the uncompressed file
302 ratio: compression ratio (0.0% if unknown)
303 uncompressed_name: name of the uncompressed file
304 @end example
306 In combination with the @option{--verbose} option, the following fields are also
307 displayed:
309 @example
310 method: compression method (deflate,compress,lzh,pack)
311 crc: the 32-bit CRC of the uncompressed data
312 date & time: timestamp for the uncompressed file
313 @end example
315 The @abbr{CRC} is given as ffffffff for a file not in gzip format.
317 With @option{--verbose}, the size totals and compression ratio for all files
318 is also displayed, unless some sizes are unknown.  With @option{--quiet},
319 the title and totals lines are not displayed.
321 @item --license
322 @itemx -L
323 Display the @command{gzip} license then quit.
325 @item --no-name
326 @itemx -n
327 When compressing, do not save the original file name and timestamp by
328 default.  (The original name is always saved if the name had to be
329 truncated.)  When decompressing, do not restore the original file name
330 if present (remove only the @command{gzip}
331 suffix from the compressed file name) and do not restore the original
332 timestamp if present (copy it from the compressed file).  This option
333 is the default when decompressing.
335 @item --name
336 @itemx -N
337 When compressing, always save the original file name, and save
338 the seconds part of the original modification timestamp if the
339 original is a regular file and its timestamp is at least 1 (1970-01-01
340 00:00:01 UTC) and is less than 2@sup{32} (2106-02-07 06:28:16 UTC,
341 assuming leap seconds are not counted); this
342 is the default.  When decompressing, restore from the saved file name and
343 timestamp if present.  This option is useful on systems which have
344 a limit on file name length or when the timestamp has been lost after
345 a file transfer.
347 @item --quiet
348 @itemx -q
349 Suppress all warning messages.
351 @item --recursive
352 @itemx -r
353 Travel the directory structure recursively.  If any of the file names
354 specified on the command line are directories, @command{gzip} will descend
355 into the directory and compress all the files it finds there (or
356 decompress them in the case of @command{gunzip}).
358 @item --rsyncable
359 Cater better to the @command{rsync} program by periodically resetting
360 the internal structure of the compressed data stream.  This lets the
361 @code{rsync} program take advantage of similarities in the uncompressed
362 input when synchronizing two files compressed with this flag.  The cost:
363 the compressed output is usually about one percent larger.
365 @item --suffix @var{suf}
366 @itemx -S @var{suf}
368 Use suffix @var{suf} instead of @samp{.gz}.
369 Although any suffix can be given so long as it does not contain @samp{/},
370 suffixes other than @samp{.z} and @samp{.gz} should be
371 avoided to avoid confusion when files are transferred to other systems.
372 An empty suffix forces gunzip to try decompression on all given files
373 regardless of suffix, as in:
375 @example
376 gunzip -S "" *        (*.* for MSDOS)
377 @end example
379 Previous versions of gzip used the @samp{.z} suffix.  This was changed to
380 avoid a conflict with @command{pack}.
382 @item --synchronous
383 Use synchronous output, by transferring output data to the output
384 file's storage device when the file system supports this.  Because
385 file system data can be cached, without this option if the system
386 crashes around the time a command like @samp{gzip FOO} is run the user
387 might lose both @file{FOO} and @file{FOO.gz}; this is the default with
388 @command{gzip}, just as it is the default with most applications that
389 move data.  When this option is used, @command{gzip} is safer but can
390 be considerably slower.
392 @item --test
393 @itemx -t
394 Test.  Check the compressed file integrity.
396 @item --verbose
397 @itemx -v
398 Verbose.  Display the name and percentage reduction for each file compressed.
400 @item --version
401 @itemx -V
402 Version.  Display the version number and compilation options, then quit.
404 @item --fast
405 @itemx --best
406 @itemx -@var{n}
407 Regulate the speed of compression using the specified digit @var{n},
408 where @option{-1} or @option{--fast} indicates the fastest compression
409 method (less compression) and @option{--best} or @option{-9} indicates the
410 slowest compression method (optimal compression).  The default
411 compression level is @option{-6} (that is, biased towards high compression at
412 expense of speed).
413 @end table
415 An exit status of 0 indicates success, 1 indicates failure, and 2
416 indicates a warning but not failure.
418 @node Advanced usage
419 @chapter Advanced usage
420 @cindex concatenated files
422 Multiple compressed files can be concatenated.  In this case,
423 @command{gunzip} will extract all members at once.  If one member is
424 damaged, other members might still be recovered after removal of the
425 damaged member.  Better compression can be usually obtained if all
426 members are decompressed and then recompressed in a single step.
428 This is an example of concatenating @command{gzip} files:
430 @example
431 gzip -c file1  > foo.gz
432 gzip -c file2 >> foo.gz
433 @end example
435 @noindent
436 Then
438 @example
439 gunzip -c foo
440 @end example
442 @noindent
443 is equivalent to
445 @example
446 cat file1 file2
447 @end example
449 In case of damage to one member of a @samp{.gz} file, other members can
450 still be recovered (if the damaged member is removed).  However,
451 you can get better compression by compressing all members at once:
453 @example
454 cat file1 file2 | gzip > foo.gz
455 @end example
457 @noindent
458 compresses better than
460 @example
461 gzip -c file1 file2 > foo.gz
462 @end example
464 If you want to recompress concatenated files to get better compression, do:
466 @example
467 zcat old.gz | gzip > new.gz
468 @end example
470 If a compressed file consists of several members, the uncompressed
471 size and @abbr{CRC} reported by the @option{--list} option applies to
472 the last member
473 only.  If you need the uncompressed size for all members, you can use:
475 @example
476 zcat file.gz | wc -c
477 @end example
479 If you wish to create a single archive file with multiple members so
480 that members can later be extracted independently, use an archiver such
481 as @command{tar} or @command{zip}.  @acronym{GNU} @command{tar}
482 supports the @option{-z}
483 option to invoke @command{gzip} transparently.  @command{gzip} is designed as a
484 complement to @command{tar}, not as a replacement.
486 @node Environment
487 @chapter Environment
488 @cindex Environment
490 The obsolescent environment variable @env{GZIP} can hold a set of
491 default options for @command{gzip}.  These options are interpreted
492 first and can be overwritten by explicit command line parameters.  As
493 this can cause problems when using scripts, this feature is supported
494 only for options that are reasonably likely to not cause too much
495 harm, and @command{gzip} warns if it is used.  This feature will be
496 removed in a future release of @command{gzip}.
498 You can use an alias or script instead.  For example, if
499 @command{gzip} is in the directory @samp{/usr/bin} you can prepend
500 @file{$HOME/bin} to your @env{PATH} and create an executable script
501 @file{$HOME/bin/gzip} containing the following:
503 @example
504 #! /bin/sh
505 export PATH=/usr/bin
506 exec gzip -9 "$@@"
507 @end example
509 The following environment variables are applicable only when using
510 @command{gzip} on IBM Z mainframes supporting DEFLATE COMPRESSION CALL
511 instruction:
513 @table @option
515 @item DFLTCC
516 Whether DEFLATE COMPRESSION CALL should be used.  Default value is @samp{1}.
517 Set this to @samp{0} to disable DEFLATE COMPRESSION CALL altogether.
519 @item DFLTCC_LEVEL_MASK
520 Compression levels on which DEFLATE COMPRESSION CALL should be used.
521 Represented as a bit mask in decimal or hexadecimal form, where each bit
522 corresponds to a compression level.  Default value is @samp{2}, which means
523 level 1 only.  In order to make use of DEFLATE COMPRESSION CALL by default, that
524 is, on levels 1-6, set this to @samp{0x7e}.
526 @item DFLTCC_BLOCK_SIZE
527 Size of deflate blocks produced by DEFLATE COMPRESSION CALL in bytes in decimal
528 or hexadecimal form.  Default value is @samp{1048576} (1 megabyte).  When using
529 DEFLATE COMPRESSION CALL to compress a file containing heterogeneous data (e.g.
530 a @samp{.tar} archive containing text and binary files), setting this to a
531 smaller value may improve compression ratio.
533 @item DFLTCC_FIRST_FHT_BLOCK_SIZE
534 Size of the first fixed deflate block produced by DEFLATE COMPRESSION CALL in
535 bytes in decimal or hexadecimal form.  Default value is @samp{4096} (4
536 kilobytes).  When using DEFLATE COMPRESSION CALL to compress a small file,
537 setting this to a larger value may improve compression ratio.
539 @item DFLTCC_RIBM
540 Value of "Reserved for IBM" field of DEFLATE COMPRESSION CALL parameter block.
541 Default value is @samp{0}.
543 @item SOURCE_DATE_EPOCH
544 If set to any value, disables compression with DEFLATE COMPRESSION CALL.  This
545 variable is normally set during reproducible builds, where DEFLATE COMPRESSION
546 CALL must be disabled, because its output may not be reproducible.
548 @end table
550 @node Tapes
551 @chapter Using @command{gzip} on tapes
552 @cindex tapes
554 When writing compressed data to a tape, it is generally necessary to pad
555 the output with zeroes up to a block boundary.  When the data is read and
556 the whole block is passed to @command{gunzip} for decompression,
557 @command{gunzip} detects that there is extra trailing garbage after the
558 compressed data and emits a warning by default if the garbage contains
559 nonzero bytes.  You can use the @option{--quiet} option to suppress
560 the warning.
562 @node Problems
563 @chapter Reporting Bugs
564 @cindex bugs
566 If you find a bug in @command{gzip}, please send electronic mail to
567 @email{bug-gzip@@gnu.org}.  Include the version number,
568 which you can find by running @w{@samp{gzip -V}}.  Also include in your
569 message the hardware and operating system, the compiler used to compile
570 @command{gzip},
571 a description of the bug behavior, and the input to @command{gzip}
572 that triggered
573 the bug.
575 @node GNU Free Documentation License
576 @appendix GNU Free Documentation License
578 @include fdl.texi
580 @node Concept index
581 @appendix Concept index
583 @printindex cp
585 @bye