Tagging 1.99.1
[linux_from_scratch.git] / BOOK / appendixa / bzip2-desc.xml
blob2ce53421c4430178681b200e727d878e3d06c149
1 <sect2><title>Short descriptions</title>
3 <para><command>bunzip2</command> decompresses bzipped files.</para>
5 <para><command>bzcat</command> decompresses to standard output.</para>
7 <para><command>bzcmp</command> runs cmp on bzipped files.</para>
9 <para><command>bzdiff</command> runs diff on bzipped files.</para>
11 <para><command>bzgrep</command> and friends run grep on bzipped files.</para>
13 <para><command>bzip2</command> compresses files using the Burrows-Wheeler
14 block sorting text compression algorithm with Huffman coding. The compression
15 rate is generally considerably better than that achieved by more conventional
16 compressors using LZ77/LZ78, like <command>gzip</command>.</para>
18 <para><command>bzip2recover</command> tries to recover data from damaged
19 bzip2 files.</para>
21 <para><command>bzless</command> runs less on bzipped files.</para>
23 <para><command>bzmore</command> runs more on bzipped files.</para>
25 <para><command>libbz2*</command> is the library implementing lossless,
26 block-sorting data compression, using the Burrows-Wheeler algorithm.</para>
28 </sect2>