当前位置 博文首页 > Linux中的bz2压缩格式的实例详解

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

    作者:cakin24 时间:2021-02-20 09:41

    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
    
    
    js
    下一篇:没有了