zip unzip tar 壓縮解壓

2022-09-12 05:06:12 字數 1365 閱讀 4619

yum install -y unzip zip    yum安裝

zip -r mydata.zip mydata    mydata目錄壓縮為mydata.zip

unzip mydata.zip -d mydatabak    mydata.zip解壓到mydatabak目錄裡面

zip -r abc123.zip abc 123.txt    abc資料夾和123.txt壓縮成為abc123.zip

unzip abc\*.zip    abc12.zip、abc23.zip、abc34.zip同時解壓

unzip -t wwwroot.zip    驗證wwwroot.zip是否完整

unzip -n test.zip -d /tmp    將壓縮檔案text.zip在指定目錄/tmp下解壓縮,如果已有相同的檔案存在,要求unzip命令不覆蓋原先的檔案。

unzip -o test.zip -d /tmp    將壓縮檔案test.zip在指定目錄/tmp下解壓縮,如果已有相同的檔案存在,要求unzip命令覆蓋原先的檔案

unzip -v wwwroot.zip    檢視wwwroot.zip裡面的內容

tar -cvf /tmp/etc.tar /etc     僅打包,不壓縮

tar -czvf /tmp/etc.tar.gz /etc     打包後,以 gzip 壓縮

tar -jcvf /tmp/etc.tar.bz2 /etc     打包後,以 bzip2 壓縮

tar -ztvf /tmp/etc.tar.gz    查閱上述 /tmp/etc.tar.gz 檔案內有哪些檔案

cd /usr/local/src     將 /tmp/etc.tar.gz 檔案解壓縮在 /usr/local/src 底下

tar -xzvf /tmp/etc.tar.gz    將 /tmp/etc.tar.gz 檔案解壓縮在 /usr/local/src 底下

tar -zxvf /tmp/etc.tar.gz etc/passwd    在 /tmp 底下,我只想要將 /tmp/etc.tar.gz 內的 etc/passwd 解開而已

tar -zcvpf /tmp/etc.tar.gz /etc    將 /etc/ 內的所有檔案備份下來,並且儲存其許可權!

tar --exclude /home/dmtsai -zcvf myfile.tar.gz /home/* /etc    我要備份 /home, /etc ,但不要 /home/dmtsai

linux tar (打包.壓縮.解壓縮)命令說明 | tar如何解壓檔案到指定的目錄?

壓縮解壓縮

壓縮 壓縮後的檔名 包含物理路徑 待壓縮的資料夾 包含物理路徑 public static void packfiles string filename,string directory catch exception 解壓縮 待解壓檔名 包含物理路徑 解壓到哪個目錄中 包含物理路徑 public ...

壓縮 解壓縮

linux使用最廣泛的壓縮格式位gz,使用gzip命令進行壓縮和解壓縮 1 gzip,gunzip,壓縮 解壓縮檔案,compress or expand files gzip acdfhkllnnrtvv19 s suffix name gunzip acfhkllnnrtvv s suffix ...

c rar解壓大小 C 壓縮 解壓縮

1 2 壓縮檔案 fnamearry 為客戶端傳回來的檔案列表 檔名陣列,壓縮包的名稱strzipname3 4 檔名陣列 5 壓縮包的名稱 6 public void zipfile string fnamearry stringstrzipname 7 19 20 u.finish 結束壓縮 2...