⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gzip.1

📁 GNU 系统开发的基于Iz77语法的压缩 学习lz77压缩算法 
💻 1
字号:
.PU.TH GZIP 1 local.SH NAMEgzip, gunzip, zcat \- compress or expand files.SH SYNOPSIS.ll +8.B gzip.RB [ " \-cdfhLrtvV19 " ][.I "name \&..."].ll -8.br.B gunzip.RB [ " \-cfhLrtvV " ][.I "name \&..."].br.B zcat.RB [ " \-hLV " ][.I "name \&..."].SH DESCRIPTION.I Gzipreduces the size of the named files using Lempel-Ziv coding (LZ77).Whenever possible,each file is replaced by one with the extension.B "\&.z,"while keeping the same ownership modes, access and modification times.(The extension is.B "\-z"for VMS,.B "z"for MSDOS, OS/2 and Atari.)If no files are specified, the standard input is compressed to thestandard output. If the new file name is too long,.I gziptruncates it and keeps the original file name in the compressed file..I Gzipwill only attempt to compress regular files.In particular, it will ignore symbolic links..PPCompressed files can be restored to their original form using.I gzip -dor.I gunzipor.I zcat..PP.I gunziptakes a list of files on its command line and replaces eachfile whose name ends with.B "\&.z"or.B "\&.Z"or.B "\&-z"and which begins with the correct magic number with an uncompressedfile without the original extension..I gunzipalso recognizes the special extensions.B "\&.tgz"and.B "\&.taz"as shorthands for.B "\&.tar.z"or.B "\&.tar.Z".PP.I gunzipcan currently decompress files created by.I gzip, zip, compressor.I pack.The detection of the input format is automatic.  When usingthe first two formats,.I gunzipchecks a 32 bit CRC. For.I pack, gunzipchecks the uncompressed length. The.I compressformat was not designed to allow consistency checks. However.I gunzipis sometimes able to detect a bad .Z file. If you get an errorwhen uncompressing a .Z file, do not assume that the .Z file iscorrect simply because the standard.I uncompressdoes not complain. This generally means that the standard.I uncompressdoes not check its input, and happily generates garbage output..PPFiles created by.I zipcan be uncompressed by gzip only if they have a single member compressedwith the 'deflation' method. This feature is only intended to helpconversion of tar.zip files to the tar.z format. To extract zip fileswith several members, use.I unzipinstead of.I gunzip..PP.I zcatis identical to.I gunzip.B \-c.(On some systems,.I zcatmay be installed as.I gzcatto preserve the original link to.I compress.).I zcatuncompresses either a list of files on the command line or itsstandard input and writes the uncompressed data on standard output..I zcatwill uncompress files that have the correct magic number whetherthey have a.B "\&.z"suffix or not..PP.I Gzipuses the Lempel-Ziv algorithm used in.I zipand PKZIP.The amount of compression obtained depends on the size of theinput and the distribution of common substrings.Typically, text such as source code or Englishis reduced by 60\-70%.Compression is generally much better than that achieved byLZW (as used in .IR compress ),Huffman coding (as used in.IR pack ),or adaptive Huffman coding.RI ( compact )..PPCompression is always performed, even if the compressed file isslightly larger than the original. The worst case expansion isa few bytes for the gzip file header, plus 5 bytes every 32K block,or an expansion ratio of 0.015% for large files..I gzippreserves the mode, ownership and timestamps of files when compressingor decompressing..SH OPTIONS.TP.B \-c --stdoutWrite output on standard output; keep original files unchanged.If there are several input files, the output consists of a sequence ofindependently compressed members. To obtain better compression,concatenate all input files before compressing them..TP.B \-d --decompressDecompress..TP.B \-f --forceForce compression or decompression even if the file has multiple linksor the corresponding file already exists.If.B \-fis not given,and when not running in the background,.I gzipprompts to verify whether an existing file should be overwritten..TP.B \-h --helpDisplay a help screen..TP.B \-L --licenseDisplay the.I gziplicense..TP.B \-q --quietSuppress all warnings..TP.B \-r --recurseTravel the directory structure recursively. If any of the file namesspecified on the command line are directories, .I gzipwill descend into the directory and compress all the files it finds there(or decompress them in the case of.I gunzip)..TP.B \-t --testTest. Check the compressed file integrity..TP.B \-v --verboseVerbose. Display the name and percentage reduction for each file compressed..TP.B \-V --versionVersion. Display the version number and compilation options..TP.B \-# --fast --bestRegulate the speed of compression using the specified digit.IR # ,where.B \-1or.B \-\-fastindicates the fastest compression method (less compression)and.B \-9or.B \-\-bestindicates the slowest compression method (optimal compression).The default compression level is.BR \-5..SH "ADVANCED USAGE"Multiple compressed files can be concatenated. In this case,.I gunzipwill extract all members at once. For example:      gzip -c file1  > foo.z      gzip -c file2 >> foo.zThen      gunzip -c foois equivalent to      cat file1 file2In case of damage to one member of a .z file, other members canstill 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.zcompresses better than      gzip -c file1 file2 > foo.zIf you want to recompress concatenated files to get better compression, do:      zcat old.z | gzip > new.z.SH "ENVIRONMENT"The environment variable.B GZIPcan hold a set of default options for.I gzip.These options are interpreted first and can be overwritten byexplicit command line parameters. For example:      for sh:    GZIP="-8 -v"; export GZIP      for csh:   setenv GZIP "-8 -v"      for MSDOS: set GZIP=-8 -vOn Vax/VMS, the name of the environment variable is GZIP_OPT, toavoid a conflict with the symbol set for invocation of the program..SH "SEE ALSO"znew(1), zcmp(1), zmore(1), zforce(1), gzexe(1), zip(1), unzip(1), compress(1),pack(1), compact(1).SH "DIAGNOSTICS"Exit status is normally 0;if an error occurs, exit status is 1. If a warning occurs, exit status is 2..PPUsage: gzip [-cdfhLrtvV19] [file ...].in +8Invalid options were specified on the command line..in -8.IR file :not in gzip format.in +8The file specified to.I gunziphas not been compressed..in -8.IR file:Corrupt input. Use zcat to recover some data..in +8The compressed file has been damaged. The data up to the point of failurecan be recovered using.in +8zcat file > recover.in -16.IR file :compressed with .I xxbits, can only handle .I yybits.in +8.I Filewas compressed (using LZW) by a program that could deal withmore .I bitsthan the decompress code on this machine.Recompress the file with gzip, which compresses better and usesless memory..in -8.IR file :already has z suffix -- no change.in +8The file is assumed to be already compressed.Rename the file and try again or use zcat..in -8.I filealready exists; do you wish to overwrite (y or n)?.in +8Respond "y" if you want the output file to be replaced; "n" if not..in -8gunzip: corrupt input.in +8A SIGSEGV violation was detected which usually means that the input file hasbeen corrupted..in -8.I "xx.x%".in +8Percentage of the input saved by compression.(Relevant only for.BR \-v \.).in -8-- not a regular file or directory: ignored.in +8When the input file is not a regular file or directory,(e.g. a symbolic link, socket, FIFO, device file), it isleft unaltered..in -8-- has .I xx other links: unchanged.in +8The input file has links; it is left unchanged.  See.IR ln "(1)"for more information. Use the.B \-fflag to force compression of multiply-linked files..in -8.SH CAVEATSThe .z extension is already used by.IR pack "(1)".You can link.I gzipto.I pcatto get transparent decompression for programs expecting .z files to be in.IR packformat.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -