gzip: add --keep example (#6193)

This commit is contained in:
scrouthtv
2021-07-04 23:02:33 +02:00
committed by GitHub
parent 9ca79aa36b
commit 00e4396521

View File

@@ -11,6 +11,10 @@
`gzip -d {{file.ext}}.gz`
- Compress a file, keeping the original file:
`gzip --keep {{file.ext}}`
- Compress a file specifying the output filename:
`gzip -c {{file.ext}} > {{compressed_file.ext.gz}}`