A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
-bash: bzcat: command not found #Debian apt-get install bzip2 #Ubuntu apt-get install bzip2 #Alpine apk add bzip2 #Arch Linux pacman -S bzip2 #Kali Linux apt-get install bzip2 #CentOS yum install bzip2 #Fedora dnf install bzip2 #OS X brew install bzip2 #Raspbian apt-get install bzip2 #Docker docker run cmd.cat/bzcat bzcat
bzcat 命令解压缩指定的 .bz2
文件,并显示解压缩后的文件内容。保留原压缩文件,并且不生成解压缩后的文件。
bzip2 [ -cdfkqstvzVL123456789 ] [ filenames ... ] bzip2 [ -h|--help ] bunzip2 [ -fkvsVL ] [ filenames ... ] bunzip2 [ -h|--help ] bzcat [ -s ] [ filenames ... ] bzcat [ -h|--help ] bzip2recover filename Read more at: https://www.commandlinux.com/man-page/man1/bzcat.1.html
.bz2压缩文件:指定要显示内容的.bz2压缩文件。
将 /tmp/man.config
以 bzip2 格式压缩:
bzip2 -z man.config #此时man.config会变成man.config.bz2 #将上面的压缩文件内容读出来: bzcat man.config.bz2 #此时屏幕上会显示 man.config.bz2 解压缩之后的文件内容。