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

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

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

cakin24   2021-03-29 我要评论
想了解Linux中的bz2压缩格式的实例详解的相关内容吗,cakin24在本文为您仔细讲解Linux bz2的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Linux中的bz2压缩格式,详解Linux中的bz2压缩格式,下面大家一起来学习吧。

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

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们