1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 16:42:10 +02:00
tldr/pages/linux/bzip2.md
2016-04-21 13:45:55 +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}}`