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