bzip2
命令名称: bzip2
功能描述: 高质量块排序文件压缩工具。
-d 解压文件 -c 解压内容输出到控制台(标准输出)
压缩cp.sh文件:
[root@man test]# bzip2 cp.sh
解压cp.sh.bz2文件输出到控制台:
[root@man test]# bzip2 -dc cp.sh.bz2
解压cp.sh.gz2文件:
[root@man test]# bzip2 -d cp.sh.bz2