1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 18:44:56 +02:00
tldr/pages/common/bzip2.md
2019-05-28 13:10:20 -03:00

254 B

bzip2

A block-sorting file compressor.

  • Compress a file:

bzip2 {{path/to/file_to_compress}}

  • Decompress a file:

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

  • Decompress a file to standard output:

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