命令-bzip2/bunzip2/bzcat

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了命令-bzip2/bunzip2/bzcat相关的知识,希望对你有一定的参考价值。

 bzip2/bunzip2/bzcat 命令

【NAME】
     bzip2, bunzip2 - a block-sorting file compressor, v1.0.6
     bzcat - decompresses files to stdout
     bzip2recover - recovers data from damaged bzip2 files
【SYNOPSIS】
     bzip2  [OPTION]...  FILE...
【OPTIONS】
     -d:解压缩
     -#:指定压缩比;默认是6;数字越大压缩比越大(1-9);
     -k:keep,保留原文件;
【EXAMPLES】
示例:
  1. [[email protected]-171 tmp]# bzip2 messages   #压缩
  2. [[email protected]-171 tmp]# ll -h messages*
  3. -rw------- 1 root root 5.8K Mar 22 16:26 messages.bz2
  4. -rw-r--r-- 1 root root 7.0K Mar 22 16:27 messages.gz
  5. [[email protected]-171 tmp]# bzip2 -d messages.bz2   #解压缩
  6. [[email protected]-171 tmp]# ll -h messages
  7. -rw------- 1 root root 85K Mar 22 16:26 messages
示例:bzip2 -k参数,压缩后保留原文件;
  1. [[email protected]-171 tmp]# bzip2 -k messages
  2. [[email protected]-171 tmp]# ll -h messages*
  3. -rw------- 1 root root  85K Mar 22 16:26 messages
  4. -rw------- 1 root root 5.8K Mar 22 16:26 messages.bz2
  5. -rw-r--r-- 1 root root 7.0K Mar 22 16:27 messages.gz
示例:bzcat,查看bzip2压缩后的文件内容
  1. [[email protected]-171 tmp]# bzcat messages.bz2

以上是关于命令-bzip2/bunzip2/bzcat的主要内容,如果未能解决你的问题,请参考以下文章

打包压缩解压缩工具详解

Linux九阴真经之催心掌残卷9(文件压缩与归档 )

错误记录Android 中调用 Process 命令行执行指令 ( java.lang.IllegalThreadStateException: process hasn‘t exited )(代码片

Android 安装包优化使用 lib7zr.so 动态库处理压缩文件 ( jni 中 main 函数声明 | 命令行处理 | jni 调用 lib7zr.so 函数库处理压缩文件完整代码 )(代码片

Android 返回堆栈管理打印 Android 中当前运行的 Activity 任务栈信息 | Activity 任务栈信息分析 | Activity 在相同 Stack 中的不同 Task(代码片

laravel5.6 IlluminateDatabaseQueryException : SQLSTATE[42000]: Syntax error or access violatio(代码片