gzip命令詳解

  

基礎命令學習目錄首頁html

 

好文連接:https://blog.csdn.net/m0_38132420/article/details/78577247網絡

原文連接:http://www.cnblogs.com/peida/archive/2012/12/06/2804323.htmlpost

減小文件大小有兩個明顯的好處,一是能夠減小存儲空間,二是經過網絡傳輸文件時,能夠減小傳輸的時間。gzip是在Linux系統中常常使用的一個對文件進行壓縮和解壓縮的命令,既方便又好用。gzip不只能夠用來壓縮大的、較少使用的文件以節省磁盤空間,還能夠和tar命令一塊兒構成Linux操做系統中比較流行的壓縮文件格式。據統計,gzip命令對文本文件有60%~70%的壓縮率。學習

1.命令格式:測試

gzip[參數][文件或者目錄]ui

2.命令功能:url

gzip是個使用普遍的壓縮程序,文件經它壓縮事後,其名稱後面會多出".gz"的擴展名。操作系統

3.命令參數:.net

-a或--ascii  使用ASCII文字模式。 htm

-c或--stdout或--to-stdout  把壓縮後的文件輸出到標準輸出設備,不去更動原始文件。 

-d或--decompress或----uncompress  解開壓縮文件。 

-f或--force  強行壓縮文件。不理會文件名稱或硬鏈接是否存在以及該文件是否爲符號鏈接。 

-h或--help  在線幫助。 

-l或--list  列出壓縮文件的相關信息。 

-L或--license  顯示版本與版權信息。 

-n或--no-name  壓縮文件時,不保存原來的文件名稱及時間戳記。 

-N或--name  壓縮文件時,保存原來的文件名稱及時間戳記。 

-q或--quiet  不顯示警告信息。 

-r或--recursive  遞歸處理,將指定目錄下的全部文件及子目錄一併處理。 

-S<壓縮字尾字符串>或----suffix<壓縮字尾字符串>  更改壓縮字尾字符串。 

-t或--test  測試壓縮文件是否正確無誤。 

-v或--verbose  顯示指令執行過程。 

-V或--version  顯示版本信息。 

-num 用指定的數字num調整壓縮的速度,-1或--fast表示最快壓縮方法(低壓縮比),-9或--best表示最慢壓縮方法(高壓縮比)。系統缺省值爲6。 

 

4.使用實例:

實例1:把test6目錄下的每一個文件壓縮成.gz文件

命令:

gzip *

輸出:

[root@xiaoma /root/mcw/shiyan] test!
#ls
01.txt  02.txt  03.txt  04.txt  05.txt  06.txt  07.txt  08.txt  09.txt  10.txt
[root@xiaoma /root/mcw/shiyan] test!
#gzip *
[root@xiaoma /root/mcw/shiyan] test!
#ls
01.txt.gz  02.txt.gz  03.txt.gz  04.txt.gz  05.txt.gz  06.txt.gz  07.txt.gz  08.txt.gz  09.txt.gz  10.txt.gz
 

說明:

 

 

實例2:把例1中每一個壓縮的文件解壓,並列出詳細的信息

命令:

gzip -dv *

輸出:

[root@xiaoma /root/mcw/shiyan] test!
#gzip -dv *
01.txt.gz:        0.0% -- replaced with 01.txt
02.txt.gz:        0.0% -- replaced with 02.txt
03.txt.gz:        0.0% -- replaced with 03.txt
04.txt.gz:        0.0% -- replaced with 04.txt
05.txt.gz:        0.0% -- replaced with 05.txt
06.txt.gz:        0.0% -- replaced with 06.txt
07.txt.gz:        0.0% -- replaced with 07.txt
08.txt.gz:        0.0% -- replaced with 08.txt
09.txt.gz:        0.0% -- replaced with 09.txt
10.txt.gz:        0.0% -- replaced with 10.txt
[root@xiaoma /root/mcw/shiyan] test!
#ls
01.txt  02.txt  03.txt  04.txt  05.txt  06.txt  07.txt  08.txt  09.txt  10.txt

 

 

說明:

 

實例3:詳細顯示例1中每一個壓縮的文件的信息,並不解壓

命令:

gzip -l *

輸出:

[root@xiaoma /root/mcw/shiyan] test!

#ls
01.txt.gz  02.txt.gz  03.txt.gz  04.txt.gz  05.txt.gz  06.txt.gz  07.txt.gz  08.txt.gz  09.txt.gz  10.txt.gz
[root@xiaoma /root/mcw/shiyan] test!
#gzip -l *
         compressed        uncompressed  ratio uncompressed_name
                 27                   0   0.0% 01.txt
                 27                   0   0.0% 02.txt
                 27                   0   0.0% 03.txt
                 27                   0   0.0% 04.txt
                 27                   0   0.0% 05.txt
                 27                   0   0.0% 06.txt
                 27                   0   0.0% 07.txt
                 27                   0   0.0% 08.txt
                 27                   0   0.0% 09.txt
                 27                   0   0.0% 10.txt

 

說明:

 

實例4:壓縮一個tar備份文件,此時壓縮文件的擴展名爲.tar.gz

命令:

gzip -r log.tar

輸出:

[root@localhost test]# ls -al log.tar

-rw-r--r-- 1 root root 307200 11-29 17:54 log.tar

[root@localhost test]# gzip -r log.tar

[root@localhost test]# ls -al log.tar.gz 

-rw-r--r-- 1 root root 1421 11-29 17:54 log.tar.gz

 

說明:

 

實例5:遞歸的壓縮目錄

命令:

gzip -rv test6

輸出:

[root@localhost test6]# ll

總計 604

---xr--r-- 1 root mail  302108 11-30 08:39 linklog.log

---xr--r-- 1 mail users 302108 11-30 08:39 log2012.log

-rw-r--r-- 1 mail users     61 11-30 08:39 log2013.log

-rw-r--r-- 1 root mail       0 11-30 08:39 log2014.log

-rw-r--r-- 1 root mail       0 11-30 08:39 log2015.log

-rw-r--r-- 1 root mail       0 11-30 08:39 log2016.log

-rw-r--r-- 1 root mail       0 11-30 08:39 log2017.log

[root@localhost test6]# cd ..

[root@localhost test]# gzip -rv test6

test6/log2014.log:        0.0% -- replaced with test6/log2014.log.gz

test6/linklog.log:       99.6% -- replaced with test6/linklog.log.gz

test6/log2015.log:        0.0% -- replaced with test6/log2015.log.gz

test6/log2013.log:       47.5% -- replaced with test6/log2013.log.gz

test6/log2012.log:       99.6% -- replaced with test6/log2012.log.gz

test6/log2017.log:        0.0% -- replaced with test6/log2017.log.gz

test6/log2016.log:        0.0% -- replaced with test6/log2016.log.gz

[root@localhost test]# cd test6

[root@localhost test6]# ll

總計 28

---xr--r-- 1 root mail  1341 11-30 08:39 linklog.log.gz

---xr--r-- 1 mail users 1341 11-30 08:39 log2012.log.gz

-rw-r--r-- 1 mail users   70 11-30 08:39 log2013.log.gz

-rw-r--r-- 1 root mail    32 11-30 08:39 log2014.log.gz

-rw-r--r-- 1 root mail    32 11-30 08:39 log2015.log.gz

-rw-r--r-- 1 root mail    32 11-30 08:39 log2016.log.gz

-rw-r--r-- 1 root mail    32 11-30 08:39 log2017.log.gz

 

說明:

這樣,全部test下面的文件都變成了*.gz,目錄依然存在只是目錄裏面的文件相應變成了*.gz.這就是壓縮,和打包不一樣。由於是對目錄操做,因此須要加上-r選項,這樣也能夠對子目錄進行遞歸了。 

 

實例6:遞歸地解壓目錄

命令:

gzip -dr test6

輸出:

[root@localhost test6]# ll

總計 28

---xr--r-- 1 root mail  1341 11-30 08:39 linklog.log.gz

---xr--r-- 1 mail users 1341 11-30 08:39 log2012.log.gz

-rw-r--r-- 1 mail users   70 11-30 08:39 log2013.log.gz

-rw-r--r-- 1 root mail    32 11-30 08:39 log2014.log.gz

-rw-r--r-- 1 root mail    32 11-30 08:39 log2015.log.gz

-rw-r--r-- 1 root mail    32 11-30 08:39 log2016.log.gz

-rw-r--r-- 1 root mail    32 11-30 08:39 log2017.log.gz

[root@localhost test6]# cd ..

[root@localhost test]# gzip -dr test6

[root@localhost test]# cd test6

[root@localhost test6]# ll

總計 604

---xr--r-- 1 root mail  302108 11-30 08:39 linklog.log

---xr--r-- 1 mail users 302108 11-30 08:39 log2012.log

-rw-r--r-- 1 mail users     61 11-30 08:39 log2013.log

-rw-r--r-- 1 root mail       0 11-30 08:39 log2014.log

-rw-r--r-- 1 root mail       0 11-30 08:39 log2015.log

-rw-r--r-- 1 root mail       0 11-30 08:39 log2016.log

-rw-r--r-- 1 root mail       0 11-30 08:39 log2017.log

[root@localhost test6]#

相關文章
相關標籤/搜索