适用于Linux的Gzip命令教程
Gzip is actually a file format which is a compressed file. There is also a tool named gzip which is used to compress and decompress files. Gzip is developed in 1992. It use DEFLATE algorithm with LZ77 and Huffman coding.
Gzip实际上是一种压缩文件格式。 还有一个名为gzip的工具,用于压缩和解压缩文件。 Gzip开发于1992年。它使用带有LZ77和霍夫曼编码的DEFLATE算法。
gzip命令帮助 (gzip Command Help)
gzip command provides different options. These options and help information can be listed with the -h
option like below.
gzip命令提供了不同的选项。 可以使用-h
选项列出这些选项和帮助信息,如下所示。
$ gzip -h
使用gzip命令压缩文件(Compress File with gzip Command)
Gzip can only compress files. It cannot compress multiple files folder or folders. Gzip command is generally used with tar command. We will only provide the file to be compressed. In this example, we will compress thefile.txt
. The output file name will be the same with just adding .gz
extension.
Gzip只能压缩文件。 它不能压缩一个或多个文件夹。 Gzip命令通常与tar命令一起使用。 我们将仅提供要压缩的文件。 在此示例中,我们将压缩thefile.txt
。 输出文件名将与只是添加.gz
扩展名相同。
$ gzip thefile.txt
使用gzip命令列出压缩文件的内容(List Compressed File Contents with gzip Command)
Compressed file contents can be listed without decompressing them. We will use -l
option. In the example, we want to list thefile.txt.gz compressed file settings. There is also information about compressed size, file ratio, uncompressed_name, etc.
可以列出压缩文件的内容而无需将其解压缩。 我们将使用-l
选项。 在示例中,我们要列出file.txt.gz压缩文件设置。 还提供有关压缩大小,文件比率,uncompressed_name等的信息。
$ gzip -l thefile.txt.gz
gzip压缩率更高 (Higher Compression Rate with gzip)
There are levels that are used to set compression ration, compressed file size, and compression duration. Higher-level compression will need more compression time but generally creates less file size. This is a trade-off. We will use -9
or --best
options to specify.
有一些级别用于设置压缩率,压缩文件大小和压缩持续时间。 更高级别的压缩将需要更多的压缩时间,但通常会减少文件大小。 这是一个权衡。 我们将使用-9
或--best
选项来指定。
$ gzip -9 thefile.txt
使用gzip更快地压缩(Faster Compression with gzip)
Another option for compression is faster compression. Actually this is the reverse of the higher compression rate. The compression duration will be less but the size will be higher than the default compression rate. We will use -1
or --fast
.
压缩的另一种选择是更快的压缩。 实际上,这与较高的压缩率相反。 压缩持续时间将更短,但大小将大于默认压缩率。 我们将使用-1
或--fast
。
$ gzip --fast thefile.txt
解压文件(Decompress File)
Files can be decompressed with gunzip
command or with -d
parameter. gunzip is actually the alias of gzip -d
.
可以使用gunzip
命令或-d
参数解压缩文件。 gunzip实际上是gzip -d
的别名。
$ gzip -d thefile.txt.gz
翻译自: https://www.poftut.com/gzip-command-tutorial-examples-linux/
推荐阅读