1.功能做用:解壓縮zip文件 ui
2.位置:/usr/bin/unzip 編碼
3.格式用法:unzip [-Z] [-opts[modifiers]] file[.zip] [list] [-x xlist] [-d exdir] spa
4.主要參數 code
5.應用實例
一、把文件解壓到當前目錄下 ip
unzip test.zip
二、若是要把文件解壓到指定的目錄下,須要用到-d參數。 字符編碼
unzip -d /temp test.zip
三、解壓的時候,有時候不想覆蓋已經存在的文件,那麼能夠加上-n參數 class
unzip -n test.zip unzip -n -d /temp test.zip
四、只看一下zip壓縮包中包含哪些文件,不進行解壓縮 test
unzip -l test.zip
五、查看顯示的文件列表還包含壓縮比率 file
unzip -v test.zip
六、檢查zip文件是否損壞 程序
unzip -t test.zip
七、將壓縮文件test.zip在指定目錄tmp下解壓縮,若是已有相同的文件存在,要求unzip命令覆蓋原先的文件
unzip -o test.zip -d /tmp/