gzip/
gunzip 壓縮/解壓縮
gzip a.txt 壓縮a.txt為a.txt.gz,不保留a.txt
gunzip a.txt.gz 解壓縮a.txt.gz為a.txt
zip/unzip 常用於專案打包
zip [option] *.zip [path/file]
unzip [option] *.zip
zip -r hello.zip /usr/local/hello 將hello資料夾壓縮為hello.zip,-r遞迴壓縮,壓縮目錄
unzip -d /usr/local hello.zip 將hello.zip解壓縮到/usr/local,-d制定解壓縮的目錄
tar 打包指令,打包後為.tar.gz
tar [option] *.tar.gz
-zfilter the arvhive through gzip
-c create a new archive壓縮
-x
extract files form an archive解壓縮
-v verbosely list files processed
-f use archive file or device archive
tar -zcvf a.tar.gz a.txt b.txt 將ab壓縮為a.tar.gz,-zcvf壓縮
tar -zxvf a.tar.gz 解壓a.tar.gz,-zxvf解壓
Linux 壓縮和解壓縮指令
gzip 用於壓縮檔案 gunzip 用於解壓檔案 基本語法 gzip 檔案 只能將檔案壓縮為 gz檔案 gunzip 檔案.gz 解壓.gz 注意 不保留原始檔!示例 將 home下的hello.txt進行壓縮 示例 將 home下的hello.txt.gz檔案進行壓縮 zip 用於壓縮檔案 un...
Linux壓縮和解壓縮
1.tar.gz tar.gz這種格式是linux下使用得最多的壓縮格式。它在壓縮時不會占用太多cpu的,而且可以得到乙個非常理想的壓縮率。tar zcvf archive name.tar.gz directory to compress 壓縮乙個目錄 tar zxvf archive name....
Linux壓縮和解壓縮
1.tar.gz tar.gz這種格式是linux下使用得最多的壓縮格式。它在壓縮時不會占用太多cpu的,而且可以得到乙個非常理想的壓縮率。tar zcvf archive name.tar.gz directory to compress 壓縮乙個目錄 tar zxvf archive name....