gz、tar、zip、bz2压缩和解压缩命令

gzip
ide

压缩后的格式为:*.gz.net

这种压缩方式不能保存原文件;且不能压缩目录code

命令举例:
#压缩
[root@localhost tmp]# gzip buodo
[root@localhost tmp]# ls
buodo.gz
#解压
[root@localhost tmp]# gunzip buodo.gz
[root@localhost tmp]# ls
buodoblog

tar递归

命令选项:
-z(gzip) 用gzip来压缩/解压缩文件
-j(bzip2) 用bzip2来压缩/解压缩文件
-v(verbose) 详细报告tar处理的文件信息
-c(create) 建立新的档案文件
-x(extract) 解压缩文件或目录
-f(file) 使用档案文件或设备,这个选项一般是必选的。ip

命令举例:
#压缩
[root@localhost tmp]# tar -zvcf buodo.tar.gz buodo
[root@localhost tmp]# tar -jvcf buodo.tar.bz2 buodo get

#解压
[root@localhost tmp]# tar -zvxf buodo.tar.gz
[root@localhost tmp]# tar -jvxf buodo.tar.bz2it

zipclass

与gzip相比:1)能够压缩目录; 2)能够保留原文件;test

选项:

-r(recursive)    递归压缩目录内的全部文件和目录

命令举例:
#压缩和解压文件
[root@localhost tmp]# zip boduo.zip boduo
[root@localhost tmp]# unzip boduo.zip

#压缩和解压目录
[root@localhost tmp]# zip -r Demo.zip Demo
adding: Demo/ (stored 0%)
adding: Demo/Test2/ (stored 0%)
adding: Demo/Test1/ (stored 0%)
adding: Demo/Test1/test4 (stored 0%)
adding: Demo/test3 (stored 0%)
[root@localhost tmp]# unzip Demo.zip
Archive: Demo.zip
creating: Demo/
creating: Demo/Test2/
creating: Demo/Test1/
extracting: Demo/Test1/test4
extracting: Demo/test3

bzip2

压缩后的格式:.bz2
参数
-k 产生压缩文件后保留原文件
1
命令举例
#压缩
[root@localhost tmp]# bzip2 boduo
[root@localhost tmp]# bzip2 -k boduo

#解压
[root@localhost tmp]# bunzip2 boduo.bz2

做者:capecape
来源:CSDN
原文:http://www.javashuo.com/article/p-dwdkkzzy-ck.html 版权声明:本文为博主原创文章,转载请附上博文连接!

相关文章
相关标签/搜索