1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 20:35:25 +02:00
tldr/pages/common/bzip2.md
2019-05-23 17:15:31 +01:00

235 B

bzip2

A block-sorting file compressor.

  • Compress file:

bzip2 {{path/to/file_to_compress}}

  • Decompress file:

bzip2 -d {{path/to/compressed_file.bz2}}

  • Decompress to console:

bzip2 -dc {{path/to/compressed_file.bz2}}