码迷,mamicode.com
首页 > 系统相关 > 详细

linux 压缩与解压

时间:2017-03-31 19:15:55      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:tar.gz   解压   扩展   软件   压缩   文件夹   调用   linux   log文件   

tar -cvf test.tar test  ----将test文件夹打包成test.tar。

# tar -xvf test.tar     ----将test.tar 进行拆解,从中抽取文件

# tar -tvf test.tar     ----列出tar包中内容

# tar -rf  test.tar log/   ----将log文件夹追加到test.tar中

gzip:

gzip 是个压缩软件,可以对文件进行压缩,压缩完扩展名为gz。由于gzip不能直接对文件夹进行压缩,所以通常都是和tar结合使用。

# gzip  SystemErr.log    ----压缩SystemErr.log文件,并生成扩展名为.gz的同名文件。

# gzip -d SystemErr.log.gz   ----解压缩

# tar -zcvf  test.tar.gz  test/     -----将test文件夹进行打包和压缩。实际上tar先打包,然后调用gzip进行压缩。

zip与unzip :

这是一对命令,zip进行压缩,unzip进行解压,压缩完成扩展名为.zip

# zip test.zip test/      -----进行压缩,可以是文件也可以是文件夹

# unzip test.zip         -----解压缩

linux 压缩与解压

标签:tar.gz   解压   扩展   软件   压缩   文件夹   调用   linux   log文件   

原文地址:http://www.cnblogs.com/chancy/p/6652658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!