完整的使用方法看幫助
記錄一下最常用的方法
一、解壓當前檔案
unzip hello.zip
hello.zip需要在當前目錄下
解壓出來的內容也會在當前目錄下
二、解壓到指定目錄
unzip -d /home/hello hello.zip
hello.zip要在當前目錄
解壓出來的內容會在/home/hello目錄下
三、檢查zip包內容是否損壞
unzip -t hello.zip
hello.zip要在當前目錄
四、是否覆蓋存在檔案
引數-o是覆蓋
引數-n是不覆蓋
解壓命令unzip常用方法彙總
解壓命令unzip常用方法彙總 1 把檔案解壓到當前目錄下 1unzip pythontab.com.zip 2 如果要把檔案解壓到指定的目錄下,需要用到 d引數。1unzip d tmp pythontab.com.zip 3 解壓的時候,有時候不想覆蓋已經存在的檔案,那麼可以加上 n引數12 u...
解壓unzip用法
1 把檔案解壓到當前目錄下 unzip test.zip2 如果要把檔案解壓到指定的目錄下,需要用到 d引數。unzip d temp test.zip3 解壓的時候,有時候不想覆蓋已經存在的檔案,那麼可以加上 n引數 unzip n test.zip unzip n d temp test.zip...
解壓unzip用法
1 把檔案解壓到當前目錄下 unzip test.zip2 如果要把檔案解壓到指定的目錄下,需要用到 d引數。unzip d temp test.zip3 解壓的時候,有時候不想覆蓋已經存在的檔案,那麼可以加上 n引數 unzip n test.zip unzip n d temp test.zip...