tldr/pages/common/gzip.md

29 lines
776 B
Markdown
Raw Normal View History

# gzip
> Compress/uncompress files with gzip compression (LZ77).
2021-04-17 16:15:37 +01:00
> More information: <https://www.gnu.org/software/gzip/manual/gzip.html>.
- Compress a file, replacing it with a gzipped compressed version:
`gzip {{file.ext}}`
- Decompress a file, replacing it with the original uncompressed version:
`gzip -d {{file.ext}}.gz`
2021-07-04 22:02:33 +01:00
- 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}}`
2019-02-05 19:05:21 +00:00
- Decompress a gzipped file specifying the output filename:
`gzip -c -d {{file.ext}}.gz > {{uncompressed_file.ext}}`
- Specify the compression level. 1=Fastest (Worst), 9=Slowest (Best), Default level is 6:
`gzip -9 -c {{file.ext}} > {{compressed_file.ext.gz}}`