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

15 lines
235 B
Markdown

# 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}}`