在 Un*x 中有著幾個被廣泛使用於保存或壓縮檔案
tar 是一個保存檔案的工具
它有
點類似 PKZIP 但並不會作壓縮的工作
它只是將許多檔案包裝成一個而已:
$ tar
cvf <archive_name
tar> <file> [file
]
把 tar file 解開
要用以下的命令:
$ tar
xpvf <archive_name
tar> [file
]
如果欲檢視 tar file 中的檔案列表
$ tar
tf <archive_name
tar> | 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 的世界裡
tar
gz 或
tgz 的檔案就像 DOS 下的
ZIP 一般普遍
以下這個命令可以浏覽
tar
gz 檔案中的檔案列表:
$ gzip
dc <file
tar
gz> | tar tf
| less
From:http://tw.wingwit.com/Article/program/Oracle/201311/17940.html