1、把檔案解壓到當前目錄下
unzip test.zip
2、如果要把檔案解壓到指定的目錄下,需要用到-d引數。
unzip -d /temp test.zip
3、解壓的時候,有時候不想覆蓋已經存在的檔案,那麼可以加上-n引數
unzip -n test.zipunzip -n -d /temp test.zip
4、只看一下zip壓縮包中包含哪些檔案,不進行解壓縮
unzip -l test.zip
5、檢視顯示的檔案列表還包含壓縮比率
unzip -v test.zip
6、檢查zip檔案是否損壞
unzip -t test.zip
7、將壓縮檔案test.zip在指定目錄tmp下解壓縮,如果已有相同的檔案存在,要求unzip命令覆蓋原先的檔案
unzip -o test.zip -d /tmp/
1、把檔案解壓到當前目錄下
unzip test.zip
2、如果要把檔案解壓到指定的目錄下,需要用到-d引數。
unzip -d /temp test.zip
3、解壓的時候,有時候不想覆蓋已經存在的檔案,那麼可以加上-n引數
unzip -n test.zipunzip -n -d /temp test.zip
4、只看一下zip壓縮包中包含哪些檔案,不進行解壓縮
unzip -l test.zip
5、檢視顯示的檔案列表還包含壓縮比率
unzip -v test.zip
6、檢查zip檔案是否損壞
unzip -t test.zip
7、將壓縮檔案test.zip在指定目錄tmp下解壓縮,如果已有相同的檔案存在,要求unzip命令覆蓋原先的檔案
unzip -o test.zip -d /tmp/
Linux解壓檔案到指定目錄
tar在linux上是常用的打包 壓縮 加壓縮工具,他的引數很多,折里僅僅列舉常用的壓縮與解壓縮引數 引數 c create 建立壓縮檔案的引數 x 解壓縮壓縮檔案的引數 z 是否需要用gzip壓縮 v 壓縮的過程中顯示檔案 f 置頂文件名,在f後面立即接檔名,不能再加引數 舉例 一,將整個 hom...
Linux解壓檔案到指定目錄
剛開始使用lixun系統很多命令還不熟悉,還有因為版本的問題,解決每個問題都是搜尋很久,記錄一下解決問題的過程,以便以後檢視。作業系統 lixun ubuntu18.04版本 1 將tgz檔案解壓到指定目錄 tar zxvf test.tgz c 指定目錄 比如將 source kernel.tgz...
Linux解壓檔案到指定目錄
tar在linux上是常用的打包 壓縮 加壓縮工具,他的引數很多,折里僅僅列舉常用的壓縮與解壓縮引數 引數 c create 建立壓縮檔案的引數 x 解壓縮壓縮檔案的引數 z 是否需要用gzip壓縮 v 壓縮的過程中顯示檔案 f 置頂文件名,在f後面立即接檔名,不能再加引數 舉例 一,將整個 hom...