Without decompressing, directly view the specified .bz2 file
bzcat command displays the decompressed file contents without decompressing the specified .bz2 file.
bzcat(parameter)
.bz2 compressed file: Specify the .bz2 compressed file to display the content.
Compress /tmp/man.config
in bzip2 format:
bzip2 -z man.config
At this time man.config will become man.config.bz2
Read the contents of the above compressed file:
bzcat man.config.bz2
At this time, the decompressed file contents of man.config.bz2 will be displayed on the screen.