十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
这篇文章主要介绍Linux中bz2压缩格式的示例分析,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
成都创新互联-专业网站定制、快速模板网站建设、高性价比孝南网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式孝南网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖孝南地区。费用合理售后完善,十多年实体公司更值得信赖。Linux中的bz2压缩格式的实例详解
一 语法
bzip2 源文件 压缩为bz2格式,不保存源文件 bzip2 -k 源文件 压缩之后保留原文件 注意:bzip2命令不能压缩目录 bzip2 -d 压缩文件 解压缩,-k保留压缩文件 bunzip2 压缩文件 解压缩,-k保留压缩文件
二 实战
[root@localhost test]# ls abc cdf dirtst [root@localhost test]# bzip2 abc [root@localhost test]# ls abc.bz2 cdf dirtst [root@localhost test]# bzip2 -k cdf [root@localhost test]# ls abc.bz2 cdf cdf.bz2 dirtst [root@localhost test]# bzip2 -d abc.bz2 [root@localhost test]# ls abc cdf cdf.bz2 dirtst [root@localhost test]# rm -fr cdf [root@localhost test]# ls abc cdf.bz2 dirtst [root@localhost test]# bunzip2 cdf.bz2 [root@localhost test]# ls abc cdf dirtst
以上是“Linux中bz2压缩格式的示例分析”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!