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

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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}}`