2016-04-21 13:44:40 +01:00
|
|
|
# bzip2
|
|
|
|
|
|
|
|
> A block-sorting file compressor.
|
2019-06-09 00:05:28 +01:00
|
|
|
> More information: <http://bzip.org>.
|
2016-04-21 13:44:40 +01:00
|
|
|
|
2019-05-28 17:10:20 +01:00
|
|
|
- Compress a file:
|
2016-04-21 13:44:40 +01:00
|
|
|
|
|
|
|
`bzip2 {{path/to/file_to_compress}}`
|
|
|
|
|
2019-05-28 17:10:20 +01:00
|
|
|
- Decompress a file:
|
2016-04-21 13:44:40 +01:00
|
|
|
|
|
|
|
`bzip2 -d {{path/to/compressed_file.bz2}}`
|
|
|
|
|
2019-05-28 17:10:20 +01:00
|
|
|
- Decompress a file to standard output:
|
2016-04-21 13:44:40 +01:00
|
|
|
|
|
|
|
`bzip2 -dc {{path/to/compressed_file.bz2}}`
|