bzip2, bzcat
[root@linux ~]# bzip2 [-cdz-] file
[root@linux ~]# bzcat file.bz2
-c :将压缩数据输出到指定设备,不改变原文件,用重导向功能
-d :解压缩
-z :强制压缩
-- :压缩等级,同gzip
[root@linux tmp]# bzip2 -z man.config
[root@linux tmp]# bzcat man.config.bz2
[root@linux tmp]# bzip2 -d man.config.bz2
[root@linux tmp]# bzip2 -9 -c man.config > man.config.bz2