这篇文章主要介绍Linux中bz2压缩格式的示例分析,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
Linux中的bz2压缩格式的实例详解
一 语法
bzip2 源文件压缩为bz2格式,不保存源文件bzip2 -k 源文件压缩之后保留原文件注意:bzip2命令不能压缩目录bzip2 -d 压缩文件解压缩,-k保留压缩文件bunzip2 压缩文件解压缩,-k保留压缩文件
二 实战
[root@localhost test]# lsabc cdf dirtst[root@localhost test]# bzip2 abc[root@localhost test]# lsabc.bz2 cdf dirtst[root@localhost test]# bzip2 -k cdf[root@localhost test]# lsabc.bz2 cdf cdf.bz2 dirtst[root@localhost test]# bzip2 -d abc.bz2[root@localhost test]# lsabc cdf cdf.bz2 dirtst[root@localhost test]# rm -fr cdf[root@localhost test]# lsabc cdf.bz2 dirtst[root@localhost test]# bunzip2 cdf.bz2[root@localhost test]# lsabc cdf dirtst
以上是“Linux中bz2压缩格式的示例分析”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!