熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

使用 tar & gzip

2022-06-13   來源: Oracle 

  在 Un*x 中有著幾個被廣泛使用於保存或壓縮檔案 tar 是一個保存檔案的工具 它有
  點類似 PKZIP 但並不會作壓縮的工作 它只是將許多檔案包裝成一個而已:
   $ tar cvf <archive_nametar> <file> [file]
  把 tar file 解開 要用以下的命令:
   $ tar xpvf <archive_nametar> [file]
  如果欲檢視 tar file 中的檔案列表
   $ tar tf <archive_nametar> | less
  用 compress 或是 gzip 可以壓縮檔案 壓縮後檔案就無法再使用除非解開來:
   $ compress <file>
  or:
   $ gzip <file>
  這樣建立出來的壓縮檔會以 Z (compress) 或 gz (gzip) 作為延伸檔名 這些檔案
  無法再被 compress 或 gzip 再壓縮 想將檔案解壓縮的話 請用
   $ compress d <file>
  or
   $ gzip d <file>
  
  請參閱 Man pages
  
  其它像是 arj zip 或是 unzip (PK??ZIP 相容) 的工具在 Linux 下一樣找得到
  在 Un*x 的世界裡 targz 或 tgz 的檔案就像 DOS 下的 ZIP 一般普遍
  以下這個命令可以浏覽 targz 檔案中的檔案列表:
   $ gzip dc <filetargz> | tar tf | less

From:http://tw.wingwit.com/Article/program/Oracle/201311/17940.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.