CentOS7中zip壓縮和unzip解壓縮命令詳解

vip1888發表於2017-12-26
1.安裝zip、unzip命令
[root@localhost ~]# yum install -y unzip zip
2.把home目錄下面的wwwroot目錄,壓縮為wwwroot.zip壓縮包,wwwroot為壓縮目錄
[root@localhost ~]# zip -r wwwroot.zip /home/wwwroot
———————————————-
# 把home目錄下面的wwwroot目錄,壓縮為wwwroot.zip壓縮包,wwwroot為壓縮目錄
[root@localhost ~]# zip -r wwwroot.zip /home/wwwroot
# 把home目錄下面的wwwroot.zip解壓到wwwroot目錄
[root@localhost ~]# unzip wwwroot.zip -d /home/wwwroot
# 把當前目錄下面的wwwroot.zip直接解壓到當前目錄裡面
[root@localhost ~]# unzip wwwroot.zip
# 檢視當前目錄下面的wwwroot.zip壓縮包的內容
[root@localhost ~]# unzip -v wwwroot.zip
# 驗證當前目錄下面的wwwroot.zip是否完整
[root@localhost ~]# unzip -t wwwroot.zip
# 把當前目錄下面所有jpg壓縮到wwwroot.zip
[root@localhost ~]# zip wwwroot.zip *jpg
———————————————-
主要引數
-c:將解壓縮的結果
-l:顯示壓縮檔案內所包含的檔案
-p:與-c引數類似,會將解壓縮的結果顯示到螢幕上,但不會執行任何的轉換
-t:檢查壓縮檔案是否正確
-u:與-f引數類似,但是除了更新現有的檔案外,也會將壓縮檔案中的其它檔案解壓縮到目錄中
-v:執行是時顯示詳細的資訊
-z:僅顯示壓縮檔案的備註文字
-a:對文字檔案進行必要的字元轉換
-b:不要對文字檔案進行字元轉換
-C:壓縮檔案中的檔名稱區分大小寫
-j:不處理壓縮檔案中原有的目錄路徑
-L:將壓縮檔案中的全部檔名改為小寫
-M:將輸出結果送到more程式處理
-n:解壓縮時不要覆蓋原有的檔案
-o:不必先詢問使用者,unzip執行後覆蓋原有檔案
-P<密碼>:使用zip的密碼選項
-q:執行時不顯示任何資訊
-s:將檔名中的空白字元轉換為底線字元
-V:保留VMS的檔案版本資訊
-X:解壓縮時同時回存檔案原來的UID/GID


相關文章