Linux中的bz2压缩格式的实例详解

时间:2021-05-23

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压缩格式的实例详解,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章