gzip不僅可以用來壓縮大的、較少使用的文件以節省磁盤空間,還可以和tar命令一起構成Linux操作系統中比較流行的壓縮文件格式。據統計,gzip命令對文本文件有60%~70%的壓縮率。
1.命令格式:
gzip[參數][文件或者目錄]
2.命令功能:
gzip是個使用廣泛的壓縮程序,文件經它壓縮過後,其名稱後面會多出".gz"的擴展名。
3.命令參數:
-a或--ascii 使用ASCII文字模式。
-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@localhosttest6]#ll
總計604
---xr--r--1rootmail30210811-3008:39linklog.log
---xr--r--1mailusers30210811-3008:39log2012.log
-rw-r--r--1mailusers6111-3008:39log2013.log
-rw-r--r--1rootmail011-3008:39log2014.log
-rw-r--r--1rootmail011-3008:39log2015.log
-rw-r--r--1rootmail011-3008:39log2016.log
-rw-r--r--1rootmail011-3008:39log2017.log
[root@localhosttest6]#gzip*
[root@localhosttest6]#ll
總計28
---xr--r--1rootmail134111-3008:39linklog.log.gz
---xr--r--1mailusers134111-3008:39log2012.log.gz
-rw-r--r--1mailusers7011-3008:39log2013.log.gz
-rw-r--r--1rootmail3211-3008:39log2014.log.gz
-rw-r--r--1rootmail3211-3008:39log2015.log.gz
-rw-r--r--1rootmail3211-3008:39log2016.log.gz
-rw-r--r--1rootmail3211-3008:39log2017.log.gz
[root@localhosttest6]#
實例2:把例1中每個壓縮的文件解壓,並列出詳細的信息
命令:
gzip-dv*
輸出:
[root@localhosttest6]#ll
總計28
---xr--r--1rootmail134111-3008:39linklog.log.gz
---xr--r--1mailusers134111-3008:39log2012.log.gz
-rw-r--r--1mailusers7011-3008:39log2013.log.gz
-rw-r--r--1rootmail3211-3008:39log2014.log.gz
-rw-r--r--1rootmail3211-3008:39log2015.log.gz
-rw-r--r--1rootmail3211-3008:39log2016.log.gz
-rw-r--r--1rootmail3211-3008:39log2017.log.gz
[root@localhosttest6]#gzip-dv*
linklog.log.gz:99.6%--replacedwithlinklog.log
log2012.log.gz:99.6%--replacedwithlog2012.log
log2013.log.gz:47.5%--replacedwithlog2013.log
log2014.log.gz:0.0%--replacedwithlog2014.log
log2015.log.gz:0.0%--replacedwithlog2015.log
log2016.log.gz:0.0%--replacedwithlog2016.log
log2017.log.gz:0.0%--replacedwithlog2017.log
[root@localhosttest6]#ll
總計604
---xr--r--1rootmail30210811-3008:39linklog.log
---xr--r--1mailusers30210811-3008:39log2012.log
-rw-r--r--1mailusers6111-3008:39log2013.log
-rw-r--r--1rootmail011-3008:39log2014.log
-rw-r--r--1rootmail011-3008:39log2015.log
-rw-r--r--1rootmail011-3008:39log2016.log
-rw-r--r--1rootmail011-3008:39log2017.log
[root@localhosttest6]#
實例3:詳細顯示例1中每個壓縮的文件的信息,並不解壓
命令:
gzip-l*
輸出:
[root@localhosttest6]#gzip-l*
compresseduncompressedratiouncompressed_name
134130210899.6%linklog.log
134130210899.6%log2012.log
706147.5%log2013.log
3200.0%log2014.log
3200.0%log2015.log
3200.0%log2016.log
3200.0%log2017.log
288060427799.5%(totals)
實例4:壓縮一個tar備份文件,此時壓縮文件的擴展名為.tar.gz
命令:
gzip-rlog.tar
輸出:
[root@localhosttest]#ls-allog.tar
-rw-r--r--1rootroot30720011-2917:54log.tar
[root@localhosttest]#gzip-rlog.tar
[root@localhosttest]#ls-allog.tar.gz
-rw-r--r--1rootroot142111-2917:54log.tar.gz
實例5:遞歸的壓縮目錄
命令:
gzip-rvtest6
輸出:
[root@localhosttest6]#ll
總計604
---xr--r--1rootmail30210811-3008:39linklog.log
---xr--r--1mailusers30210811-3008:39log2012.log
-rw-r--r--1mailusers6111-3008:39log2013.log
-rw-r--r--1rootmail011-3008:39log2014.log
-rw-r--r--1rootmail011-3008:39log2015.log
-rw-r--r--1rootmail011-3008:39log2016.log
-rw-r--r--1rootmail011-3008:39log2017.log
[root@localhosttest6]#cd..
[root@localhosttest]#gzip-rvtest6
test6/log2014.log:0.0%--replacedwithtest6/log2014.log.gz
test6/linklog.log:99.6%--replacedwithtest6/linklog.log.gz
test6/log2015.log:0.0%--replacedwithtest6/log2015.log.gz
test6/log2013.log:47.5%--replacedwithtest6/log2013.log.gz
test6/log2012.log:99.6%--replacedwithtest6/log2012.log.gz
test6/log2017.log:0.0%--replacedwithtest6/log2017.log.gz
test6/log2016.log:0.0%--replacedwithtest6/log2016.log.gz