• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    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压缩格式的实例详解,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

    您可能感兴趣的文章:
    • Linux通过命令压缩与解压缩的方法| tar, tar.gz, tar.bz2
    • linux下怎么解压.tar.gz .tar.bz2命令
    上一篇:Linux禁止普通用户su至root的解决方法
    下一篇:Linux链接命令的实例详解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

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