The command bzcat -vvv compressed_file.bz2 > decompressed_file
produces in console:
compressed_file.bz2:
[1: huff+mtf rt+rld {0x7ae7dbbc, 0x7ae7dbbc}]
[2: huff+mtf rt+rld {0x0c85da5f, 0x0c85da5f}]
[3: huff+mtf rt+rld {0x5e204b89, 0x5e204b89}]
...
I would like to know if I can infer the process percentage by reading that output.
For example:
- Is each line
[N: ...]
written per a constant amount of data read? - Are those
{M, M}
numbers useful for this purpose? - Is there any other hint to get the percentage?