1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 12:02:08 +02:00
tldr/pages/common/bzip2.md
2019-06-09 18:53:49 +02:00

16 lines
293 B
Markdown

# bzip2
> A block-sorting file compressor.
> More information: <http://bzip.org>.
- 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}}`