X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=doc%2Fgzip.info;h=4c633b142dcd914fe122e3c42c238896864cd2b3;hb=fd3d944e335eb7a784b447fe91d9f5ae7ccb9dd8;hp=b017e57633e490593340daa21910501f8571eae0;hpb=0d5a754ba8f2cc33e98d48d559f0ad6cd18a43a3;p=debian%2Fgzip diff --git a/doc/gzip.info b/doc/gzip.info index b017e57..4c633b1 100644 --- a/doc/gzip.info +++ b/doc/gzip.info @@ -1,47 +1,53 @@ -This is gzip.info, produced by makeinfo version 4.8 from gzip.texi. +This is gzip.info, produced by makeinfo version 4.13 from gzip.texi. - This manual is for Gzip (version 1.3.9, 8 December 2006), and +This manual is for GNU Gzip (version 1.5, 1 January 2012), and documents commands for compressing and decompressing data. - Copyright (C) 1998, 1999, 2001, 2002, 2006 Free Software Foundation, -Inc. + Copyright (C) 1998-1999, 2001-2002, 2006-2007, 2009-2012 Free +Software Foundation, Inc. Copyright (C) 1992, 1993 Jean-loup Gailly Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, - Version 1.2 or any later version published by the Free Software + Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License". -INFO-DIR-SECTION Individual utilities +INFO-DIR-SECTION Compression START-INFO-DIR-ENTRY -* gzip: (gzip)Invoking gzip. Compress files. +* Gzip: (gzip). General (de)compression of files (lzw). END-INFO-DIR-ENTRY -INFO-DIR-SECTION Utilities +INFO-DIR-SECTION Individual utilities START-INFO-DIR-ENTRY -* Gzip: (gzip). The gzip command for compressing files. +* gunzip: (gzip)Overview. Decompression. +* gzexe: (gzip)Overview. Compress executables. +* zcat: (gzip)Overview. Decompression to stdout. +* zdiff: (gzip)Overview. Compare compressed files. +* zforce: (gzip)Overview. Force .gz extension on files. +* zgrep: (gzip)Overview. Search compressed files. +* zmore: (gzip)Overview. Decompression output by pages. END-INFO-DIR-ENTRY  -File: gzip.info, Node: Top, Up: (dir) +File: gzip.info, Node: Top, Next: Overview, Up: (dir) -Compressing Files -***************** +GNU Gzip: General file (de)compression +************************************** -This manual is for Gzip (version 1.3.9, 8 December 2006), and documents -commands for compressing and decompressing data. +This manual is for GNU Gzip (version 1.5, 1 January 2012), and +documents commands for compressing and decompressing data. - Copyright (C) 1998, 1999, 2001, 2002, 2006 Free Software Foundation, -Inc. + Copyright (C) 1998-1999, 2001-2002, 2006-2007, 2009-2012 Free +Software Foundation, Inc. Copyright (C) 1992, 1993 Jean-loup Gailly Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, - Version 1.2 or any later version published by the Free Software + Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License". @@ -55,11 +61,11 @@ Inc. * Environment:: The `GZIP' environment variable * Tapes:: Using `gzip' on tapes. * Problems:: Reporting bugs. -* Copying This Manual:: How to make copies of this manual. -* Concept Index:: Index of concepts. +* GNU Free Documentation License:: Copying and sharing this manual. +* Concept index:: Index of concepts.  -File: gzip.info, Node: Overview, Next: Sample, Up: Top +File: gzip.info, Node: Overview, Next: Sample, Prev: Top, Up: Top 1 Overview ********** @@ -81,14 +87,14 @@ For example, if file names are limited to 14 characters, gzip.msdos.exe is compressed to gzi.msd.exe.gz. Names are not truncated on systems which do not have a limit on file name length. - By default, `gzip' keeps the original file name and timestamp in the -compressed file. These are used when decompressing the file with the -`-N' option. This is useful when the compressed file name was truncated -or when the time stamp was not preserved after a file transfer. -However, due to limitations in the current `gzip' file format, -fractional seconds are discarded. Also, time stamps must fall within -the range 1970-01-01 00:00:00 through 2106-02-07 06:28:15 UTC, and -hosts whose operating systems use 32-bit time stamps are further + By default, `gzip' keeps the original file name and time stamp in +the compressed file. These are used when decompressing the file with +the `-N' option. This is useful when the compressed file name was +truncated or when the time stamp was not preserved after a file +transfer. However, due to limitations in the current `gzip' file +format, fractional seconds are discarded. Also, time stamps must fall +within the range 1970-01-01 00:00:00 through 2106-02-07 06:28:15 UTC, +and hosts whose operating systems use 32-bit time stamps are further restricted to time stamps no later than 2038-01-19 03:14:07 UTC. The upper bounds assume the typical case where leap seconds are ignored. @@ -98,28 +104,29 @@ compressed file is not suitable for its file system, a new name is constructed from the original one to make it legal. `gunzip' takes a list of files on its command line and replaces each -file whose name ends with `.gz', `.z', `.Z', `-gz', `-z' or `_z' and -which begins with the correct magic number with an uncompressed file -without the original extension. `gunzip' also recognizes the special -extensions `.tgz' and `.taz' as shorthands for `.tar.gz' and `.tar.Z' -respectively. When compressing, `gzip' uses the `.tgz' extension if -necessary instead of truncating a file with a `.tar' extension. +file whose name ends with `.gz', `.z' `-gz', `-z', or `_z' (ignoring +case) and which begins with the correct magic number with an +uncompressed file without the original extension. `gunzip' also +recognizes the special extensions `.tgz' and `.taz' as shorthands for +`.tar.gz' and `.tar.Z' respectively. When compressing, `gzip' uses the +`.tgz' extension if necessary instead of truncating a file with a `.tar' +extension. `gunzip' can currently decompress files created by `gzip', `zip', -`compress' or `pack'. The detection of the input format is automatic. +`compress' or `pack'. The detection of the input format is automatic. When using the first two formats, `gunzip' checks a 32 bit CRC (cyclic -redundancy check). For `pack', `gunzip' checks the uncompressed length. -The `compress' format was not designed to allow consistency checks. -However `gunzip' is sometimes able to detect a bad `.Z' file. If you -get an error when uncompressing a `.Z' file, do not assume that the -`.Z' file is correct simply because the standard `uncompress' does not -complain. This generally means that the standard `uncompress' does not -check its input, and happily generates garbage output. The SCO -`compress -H' format (`lzh' compression method) does not include a CRC -but also allows some consistency checks. +redundancy check). For `pack', `gunzip' checks the uncompressed +length. The `compress' format was not designed to allow consistency +checks. However `gunzip' is sometimes able to detect a bad `.Z' file. +If you get an error when uncompressing a `.Z' file, do not assume that +the `.Z' file is correct simply because the standard `uncompress' does +not complain. This generally means that the standard `uncompress' does +not check its input, and happily generates garbage output. The SCO +`compress -H' format (LZH compression method) does not include a CRC but +also allows some consistency checks. Files created by `zip' can be uncompressed by `gzip' only if they -have a single member compressed with the 'deflation' method. This +have a single member compressed with the 'deflation' method. This feature is only intended to help conversion of `tar.zip' files to the `tar.gz' format. To extract a `zip' file with a single member, use a command like `gunzip . This is the output of the command `gzip -v texinfo.tex': - texinfo.tex: 69.7% -- replaced with texinfo.tex.gz + texinfo.tex: 69.3% -- replaced with texinfo.tex.gz - The following command will find all `gzip' files in the current -directory and subdirectories, and extract them in place without -destroying the original: + The following command will find all regular `.gz' files in the +current directory and subdirectories (skipping file names that contain +newlines), and extract them in place without destroying the original, +stopping on the first failure: - find . -name '*.gz' -print | sed 's/^\(.*\)[.]gz$/gunzip < "&" > "\1"/' | sh + find . -name '* + *' -prune -o -name '*.gz' -type f -print | + sed " + s/'/'\\\\''/g + s/^\\(.*\\)\\.gz$/gunzip <'\\1.gz' >'\\1'/ + " | + sh -e  File: gzip.info, Node: Invoking gzip, Next: Advanced usage, Prev: Sample, Up: Top @@ -211,7 +230,7 @@ The format for running the `gzip' program is: `-c' Write output on standard output; keep original files unchanged. If there are several input files, the output consists of a - sequence of independently compressed members. To obtain better + sequence of independently compressed members. To obtain better compression, concatenate all input files before compressing them. `--decompress' @@ -223,11 +242,11 @@ The format for running the `gzip' program is: `-f' Force compression or decompression even if the file has multiple links or the corresponding file already exists, or if the - compressed data is read from or written to a terminal. If the + compressed data is read from or written to a terminal. If the input data is not in a format recognized by `gzip', and if the option `--stdout' is also given, copy the input data without - change to the standard output: let `zcat' behave as `cat'. If `-f' - is not given, and when not running in the background, `gzip' + change to the standard output: let `zcat' behave as `cat'. If + `-f' is not given, and when not running in the background, `gzip' prompts to verify whether an existing file should be overwritten. `--help' @@ -243,8 +262,8 @@ The format for running the `gzip' program is: ratio: compression ratio (0.0% if unknown) uncompressed_name: name of the uncompressed file - The uncompressed size is given as `-1' for files not in `gzip' - format, such as compressed `.Z' files. To get the uncompressed + The uncompressed size is given as -1 for files not in `gzip' + format, such as compressed `.Z' files. To get the uncompressed size for such a file, you can use: zcat file.Z | wc -c @@ -256,15 +275,15 @@ The format for running the `gzip' program is: crc: the 32-bit CRC of the uncompressed data date & time: time stamp for the uncompressed file - The crc is given as ffffffff for a file not in gzip format. + The CRC is given as ffffffff for a file not in gzip format. With `--verbose', the size totals and compression ratio for all - files is also displayed, unless some sizes are unknown. With + files is also displayed, unless some sizes are unknown. With `--quiet', the title and totals lines are not displayed. The `gzip' format represents the input size modulo 2^32, so the uncompressed size and compression ratio are listed incorrectly for - uncompressed files 4 GB and larger. To work around this problem, + uncompressed files 4 GiB and larger. To work around this problem, you can use the following command to discover a large uncompressed file's true size: @@ -277,18 +296,18 @@ The format for running the `gzip' program is: `--no-name' `-n' When compressing, do not save the original file name and time - stamp by default. (The original name is always saved if the name - had to be truncated.) When decompressing, do not restore the + stamp by default. (The original name is always saved if the name + had to be truncated.) When decompressing, do not restore the original file name if present (remove only the `gzip' suffix from the compressed file name) and do not restore the original time - stamp if present (copy it from the compressed file). This option + stamp if present (copy it from the compressed file). This option is the default when decompressing. `--name' `-N' When compressing, always save the original file name and time - stamp; this is the default. When decompressing, restore the - original file name and time stamp if present. This option is + stamp; this is the default. When decompressing, restore the + original file name and time stamp if present. This option is useful on systems which have a limit on file name length or when the time stamp has been lost after a file transfer. @@ -298,14 +317,14 @@ The format for running the `gzip' program is: `--recursive' `-r' - Travel the directory structure recursively. If any of the file + Travel the directory structure recursively. If any of the file names specified on the command line are directories, `gzip' will descend into the directory and compress all the files it finds there (or decompress them in the case of `gunzip'). `--suffix SUF' `-S SUF' - Use suffix `SUF' instead of `.gz'. Any suffix can be given, but + Use suffix SUF instead of `.gz'. Any suffix can be given, but suffixes other than `.z' and `.gz' should be avoided to avoid confusion when files are transferred to other systems. A null suffix forces gunzip to try decompression on all given files @@ -313,21 +332,21 @@ The format for running the `gzip' program is: gunzip -S "" * (*.* for MSDOS) - Previous versions of gzip used the `.z' suffix. This was changed to - avoid a conflict with `pack'. + Previous versions of gzip used the `.z' suffix. This was changed + to avoid a conflict with `pack'. `--test' `-t' - Test. Check the compressed file integrity. + Test. Check the compressed file integrity. `--verbose' `-v' - Verbose. Display the name and percentage reduction for each file + Verbose. Display the name and percentage reduction for each file compressed. `--version' `-V' - Version. Display the version number and compilation options, then + Version. Display the version number and compilation options, then quit. `--fast' @@ -346,8 +365,8 @@ File: gzip.info, Node: Advanced usage, Next: Environment, Prev: Invoking gzip 4 Advanced usage **************** -Multiple compressed files can be concatenated. In this case, `gunzip' -will extract all members at once. If one member is damaged, other +Multiple compressed files can be concatenated. In this case, `gunzip' +will extract all members at once. If one member is damaged, other members might still be recovered after removal of the damaged member. Better compression can be usually obtained if all members are decompressed and then recompressed in a single step. @@ -357,21 +376,21 @@ decompressed and then recompressed in a single step. gzip -c file1 > foo.gz gzip -c file2 >> foo.gz - Then +Then gunzip -c foo - is equivalent to +is equivalent to cat file1 file2 In case of damage to one member of a `.gz' file, other members can -still be recovered (if the damaged member is removed). However, you can -get better compression by compressing all members at once: +still be recovered (if the damaged member is removed). However, you +can get better compression by compressing all members at once: cat file1 file2 | gzip > foo.gz - compresses better than +compresses better than gzip -c file1 file2 > foo.gz @@ -382,14 +401,14 @@ compression, do: If a compressed file consists of several members, the uncompressed size and CRC reported by the `--list' option applies to the last member -only. If you need the uncompressed size for all members, you can use: +only. If you need the uncompressed size for all members, you can use: zcat file.gz | wc -c If you wish to create a single archive file with multiple members so that members can later be extracted independently, use an archiver such -as `tar' or `zip'. GNU `tar' supports the `-z' option to invoke `gzip' -transparently. `gzip' is designed as a complement to `tar', not as a +as `tar' or `zip'. GNU `tar' supports the `-z' option to invoke `gzip' +transparently. `gzip' is designed as a complement to `tar', not as a replacement.  @@ -406,8 +425,8 @@ explicit command line parameters. For example: for csh: setenv GZIP "-8v --name" for MSDOS: set GZIP=-8v --name - On Vax/VMS, the name of the environment variable is `GZIP_OPT', to -avoid a conflict with the symbol set for invocation of the program. + On VMS, the name of the environment variable is `GZIP_OPT', to avoid +a conflict with the symbol set for invocation of the program.  File: gzip.info, Node: Tapes, Next: Problems, Prev: Environment, Up: Top @@ -416,11 +435,11 @@ File: gzip.info, Node: Tapes, Next: Problems, Prev: Environment, Up: Top *********************** When writing compressed data to a tape, it is generally necessary to pad -the output with zeroes up to a block boundary. When the data is read and -the whole block is passed to `gunzip' for decompression, `gunzip' +the output with zeroes up to a block boundary. When the data is read +and the whole block is passed to `gunzip' for decompression, `gunzip' detects that there is extra trailing garbage after the compressed data and emits a warning by default if the garbage contains nonzero bytes. -You have to use the `--quiet' option to suppress the warning. This +You have to use the `--quiet' option to suppress the warning. This option can be set in the `GZIP' environment variable, as in: for sh: GZIP="-q" tar -xfz --block-compress /dev/rst0 @@ -432,7 +451,7 @@ of `tar') is used for reading and writing compressed data on tapes. (This example assumes you are using the GNU version of `tar'.)  -File: gzip.info, Node: Problems, Next: Copying This Manual, Prev: Tapes, Up: Top +File: gzip.info, Node: Problems, Next: GNU Free Documentation License, Prev: Tapes, Up: Top 7 Reporting Bugs **************** @@ -444,25 +463,15 @@ operating system, the compiler used to compile `gzip', a description of the bug behavior, and the input to `gzip' that triggered the bug.  -File: gzip.info, Node: Copying This Manual, Next: Concept Index, Prev: Problems, Up: Top +File: gzip.info, Node: GNU Free Documentation License, Next: Concept index, Prev: Problems, Up: Top -Appendix A Copying This Manual -****************************** +Appendix A GNU Free Documentation License +***************************************** -* Menu: + Version 1.3, 3 November 2008 -* GNU Free Documentation License:: License for copying this manual. - - -File: gzip.info, Node: GNU Free Documentation License, Up: Copying This Manual - -A.1 GNU Free Documentation License -================================== - - Version 1.2, November 2002 - - Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. + `http://fsf.org/' Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -564,6 +573,9 @@ A.1 GNU Free Documentation License Page" means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text. + The "publisher" means any person or entity that distributes copies + of the Document to the public. + A section "Entitled XYZ" means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ @@ -829,12 +841,29 @@ A.1 GNU Free Documentation License 9. TERMINATION You may not copy, modify, sublicense, or distribute the Document - except as expressly provided for under this License. Any other - attempt to copy, modify, sublicense or distribute the Document is - void, and will automatically terminate your rights under this - License. However, parties who have received copies, or rights, - from you under this License will not have their licenses - terminated so long as such parties remain in full compliance. + except as expressly provided under this License. Any attempt + otherwise to copy, modify, sublicense, or distribute it is void, + and will automatically terminate your rights under this License. + + However, if you cease all violation of this License, then your + license from a particular copyright holder is reinstated (a) + provisionally, unless and until the copyright holder explicitly + and finally terminates your license, and (b) permanently, if the + copyright holder fails to notify you of the violation by some + reasonable means prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is + reinstated permanently if the copyright holder notifies you of the + violation by some reasonable means, this is the first time you have + received notice of violation of this License (for any work) from + that copyright holder, and you cure the violation prior to 30 days + after your receipt of the notice. + + Termination of your rights under this section does not terminate + the licenses of parties who have received copies or rights from + you under this License. If your rights have been terminated and + not permanently reinstated, receipt of a copy of some or all of + the same material does not give you any rights to use it. 10. FUTURE REVISIONS OF THIS LICENSE @@ -852,7 +881,41 @@ A.1 GNU Free Documentation License published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the - Free Software Foundation. + Free Software Foundation. If the Document specifies that a proxy + can decide which future versions of this License can be used, that + proxy's public statement of acceptance of a version permanently + authorizes you to choose that version for the Document. + + 11. RELICENSING + + "Massive Multiauthor Collaboration Site" (or "MMC Site") means any + World Wide Web server that publishes copyrightable works and also + provides prominent facilities for anybody to edit those works. A + public wiki that anybody can edit is an example of such a server. + A "Massive Multiauthor Collaboration" (or "MMC") contained in the + site means any set of copyrightable works thus published on the MMC + site. + + "CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0 + license published by Creative Commons Corporation, a not-for-profit + corporation with a principal place of business in San Francisco, + California, as well as future copyleft versions of that license + published by that same organization. + + "Incorporate" means to publish or republish a Document, in whole or + in part, as part of another Document. + + An MMC is "eligible for relicensing" if it is licensed under this + License, and if all works that were first published under this + License somewhere other than this MMC, and subsequently + incorporated in whole or in part into the MMC, (1) had no cover + texts or invariant sections, and (2) were thus incorporated prior + to November 1, 2008. + + The operator of an MMC Site may republish an MMC contained in the + site under CC-BY-SA on the same site at any time before August 1, + 2009, provided the MMC is eligible for relicensing. + ADDENDUM: How to use this License for your documents ==================================================== @@ -863,7 +926,7 @@ notices just after the title page: Copyright (C) YEAR YOUR NAME. Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.2 + under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU @@ -886,9 +949,9 @@ free software license, such as the GNU General Public License, to permit their use in free software.  -File: gzip.info, Node: Concept Index, Prev: Copying This Manual, Up: Top +File: gzip.info, Node: Concept index, Prev: GNU Free Documentation License, Up: Top -Appendix B Concept Index +Appendix B Concept index ************************ [index] @@ -897,8 +960,6 @@ Appendix B Concept Index * bugs: Problems. (line 6) * concatenated files: Advanced usage. (line 6) * Environment: Environment. (line 6) -* FDL, GNU Free Documentation License: GNU Free Documentation License. - (line 6) * invoking: Invoking gzip. (line 6) * options: Invoking gzip. (line 6) * overview: Overview. (line 6) @@ -908,16 +969,15 @@ Appendix B Concept Index  Tag Table: -Node: Top1011 -Node: Overview2133 -Node: Sample7309 -Node: Invoking gzip8964 -Node: Advanced usage13942 -Node: Environment15532 -Node: Tapes16101 -Node: Problems17116 -Node: Copying This Manual17575 -Node: GNU Free Documentation License17813 -Node: Concept Index40209 +Node: Top1472 +Node: Overview2683 +Node: Sample7891 +Node: Invoking gzip9829 +Node: Advanced usage14821 +Node: Environment16408 +Node: Tapes16973 +Node: Problems17990 +Node: GNU Free Documentation License18460 +Node: Concept index43628  End Tag Table