Use of Linux gzip command

Use of Linux gzip command

1. Command Introduction

The gzip (GNU zip) command is used to compress and decompress files. It is a command often used in Linux systems to compress and decompress files. It uses the LZ77 lossless compression algorithm. The compressed files generally use the .gz suffix.

gzip can not only be used to compress large, seldom used files to save disk space, but can also be used together with the tar command to form a popular compressed file format in the Linux operating system. According to statistics, the gzip command has a compression rate of 60% to 70% for text files. Reducing file size has two obvious benefits. One is that it can reduce storage space. The other is that when transferring files over the network, it can reduce the transmission time.

2. Command format

gzip [ -acdfhlLnNrtvV19 ] [-S SUFFIX ] [ NAME... ]

3. Option Description

-a --ascii
	Use ASCII text mode. Use local conventions when converting end-of-line characters. This option is supported only on some non-Unix systems. For MSDOS, convert CR LF to LF when compressing, and convert LF to CR LF when decompressing
-c, --stdout, --to-stdout
	Output the compressed file to standard output without changing the original file -d, --decompress, --uncompress
	unzip -f, --force
	Force compression or decompression, even if the file has multiple links or the corresponding file already exists, or the compressed data is read from or written to the terminal -h, --help
	Display help information and exit -l, --list
	List relevant information of compressed files -L, --license
	Display copyright information and exit -n, --no-name
	When compressing files, the original file names and timestamps are not saved. When decompressing, the original file name and timestamp will not be restored even if they exist. This option is the default option when decompressing -N, --name
	When compressing, always save the original filename and timestamp; this is the default. When decompressing, the original filename and timestamp are restored if they exist. This option is useful on systems that limit file name lengths or where timestamps are lost after file transfers. -q, --quiet
	Do not display warning messages -r, --recursive
	Recursive processing, process all files and subdirectories under the specified directory together -S, --suffix=SUFFIX
	Change the suffix of the compressed and decompressed files -t, --test
	Test whether the compressed file is correct -v, --verbose
	Display the command execution process -V, --version
	Show version information and exit -#, --best, --fast
	Specifies the compression effect. The compression ratio is a value between 1 and 9. The larger the value, the higher the compression ratio and the lower the compression speed. The default value is 6. --best is equivalent to -9, --fast is equivalent to -1

4. Common Examples

(1) The original file is not compressed.

gzip /etc/passwd

The compressed /etc/passwd will become /etc/passwd.gz.

(2) Keep the original file compression.

gzip -c /etc/passwd > passwd.gz

(3) Display the instruction execution process during compression.

gzip -v /etc/passwd
/etc/passwd: 57.9% -- replaced with /etc/passwd.gz

(4) Decompress the .gz file without retaining the original file.

gzip -dv /etc/passwd.gz
/etc/passwd.gz: 57.9% -- replaced with /etc/passwd

(5) Recursively compress all files in the specified directory.

ls dir
file1 file2 file3

gzip -rv dir
dir/file3: -10.0% -- replaced with dir/file3.gz
dir/file2: -25.0% -- replaced with dir/file2.gz
dir/file1: -16.7% -- replaced with dir/file1.gz

The above is the detailed content of the use of Linux gzip command. For more information about Linux gzip command, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Usage of Linux userdel command
  • Use of Linux date command
  • How to run Linux commands in the background
  • Use of Linux stat command
  • Use of Linux ls command
  • Use of Linux ln command
  • Linux cut command explained
  • Use of Linux bzip2 command

<<:  The difference between char and varchar in MYSQL

>>:  js to achieve sliding carousel effect

Recommend

MySQL 5.7.17 installation and configuration method graphic tutorial (windows10)

MySQL 5.7.17 installation and configuration metho...

Implementation steps for building multi-page programs using Webpack

It is very common to use webpack to build single-...

Summary of the Differences between find() and filter() Methods in JavaScript

Table of contents Preface JavaScript find() Metho...

A Brief Analysis of the Differences between “:=” and “=” in MySQL

= Only when setting and updating does it have the...

How to start jar package and run it in the background in Linux

The Linux command to run the jar package is as fo...

Solve the problem of docker's tls (ssl) certificate expiration

Problem phenomenon: [root@localhost ~]# docker im...

uniapp Sample code for implementing global sharing of WeChat mini-programs

Table of contents Create a global shared content ...

Mysql | Detailed explanation of fuzzy query using wildcards (like,%,_)

Wildcard categories: %Percent wildcard: indicates...

Detailed explanation of the difference between run/cmd/entrypoint in docker

In Dockerfile, run, cmd, and entrypoint can all b...

How to make your JavaScript functions more elegant

Table of contents Object parameters using destruc...

Incomplete solution for using input type=text value=str

I encountered a very strange problem today. Look a...

MySQL v5.7.18 decompression version installation detailed tutorial

Download MySQL https://dev.mysql.com/downloads/my...

Linux kernel device driver memory management notes

/********************** * Linux memory management...