mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 01:02:09 +02:00
gzip: fix parameters formatting (#14731)
gzip: parameters formatting fix
This commit is contained in:
parent
ce81b84693
commit
8058b46345
1 changed files with 3 additions and 3 deletions
|
@ -9,15 +9,15 @@
|
|||
|
||||
- Decompress a file, replacing it with the original uncompressed version:
|
||||
|
||||
`gzip {{-d|--decompress path/to/file.gz}}`
|
||||
`gzip {{-d|--decompress}} {{path/to/file.gz}}`
|
||||
|
||||
- Compress a file, keeping the original file:
|
||||
|
||||
`gzip {{-k|--keep path/to/file}}`
|
||||
`gzip {{-k|--keep}} {{path/to/file}}`
|
||||
|
||||
- Compress a file, specifying the output filename:
|
||||
|
||||
`gzip {{-c|--stdout path/to/file}} > {{path/to/compressed_file.gz}}`
|
||||
`gzip {{-c|--stdout}} {{path/to/file}} > {{path/to/compressed_file.gz}}`
|
||||
|
||||
- Decompress a `gzip` archive specifying the output filename:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue