linux檔案壓縮解壓縮命令
unzip 解壓縮命令
tar命令
1.unzip 解壓縮命令用於解壓縮.zip檔案 參考linux unzip命令 、 linux tar.gz、tar、bz2、zip 等解壓縮、壓縮命令詳解
語法:unzip [引數] zip_file -d [解壓縮目錄]
可選引數 例子
[root@vm_0_8_centos ss]# ll
total 16
-rw-r--r-- 1 root root 14 mar 23 10:35 file3
drwxr-xr-x 2 root root 4096 mar 23 10:38 mm
-rw-r--r-- 1 root root 17 mar 23 11:26 mm_file1
-rw-r--r-- 1 root root 512 mar 23 15:10 test.zip
#解壓縮 test.zip 檔案 到test目錄
[root@vm_0_8_centos ss]# unzip -o test.zip -d test
2.tar命令參考linux中tar命令用法 、菜鳥教程 linux tar命令
可選引數
用法 解壓
tar –xzf file.tar.z 解壓tar.z
034 檔案壓縮及解壓縮命令 tar
tar 將檔案打包 壓縮 成以tar.gz為字尾的檔案,也可以解壓以tar.gz為字尾的壓縮檔案tar 引數 想要打成的包名.tar.gz 要被打包的檔名 壓縮時常用的引數 z 通過gzip來進行歸檔 c 建立乙個新的歸檔 檔案 f 指定新的歸檔 檔案 的檔名 v 詳細顯示壓縮或解壓縮的過程 h 把...
25 檔案的壓縮和解壓縮
一 技術方案 1.第三方框架 ssziparchive 2.依賴的動態庫 libz.dylib 二 壓縮1 1.第乙個方法 zipfile 產生的zip檔案的最終路徑 directory 需要進行的壓縮的資料夾路徑 ssziparchive createzipfileatpath zipfile w...
linux壓縮解壓縮命令
zip r myfile.zip 將當前目錄下面所有的東西打包到myfile.zip unzip o d home sunny myfile.zip 把myfile.zip檔案解壓到 home sunny o 不提示的情況下覆蓋檔案 d 指名檔案解壓縮到哪個目錄 zip d myfile.zip s...