1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 22:26:00 +02:00

bzip2: fix wording (#3057)

This commit is contained in:
Marco Bonelli 2019-05-28 18:10:20 +02:00 committed by Lucas Gabriel Schneider
parent f25dd60c15
commit f71070c70c

View file

@ -2,14 +2,14 @@
> A block-sorting file compressor.
- Compress file:
- Compress a file:
`bzip2 {{path/to/file_to_compress}}`
- Decompress file:
- Decompress a file:
`bzip2 -d {{path/to/compressed_file.bz2}}`
- Decompress to console:
- Decompress a file to standard output:
`bzip2 -dc {{path/to/compressed_file.bz2}}`