Forrest logo
back to context overview

gunzip

List of commands for gunzip:

  • gunzip:tldr:0bf95 gunzip: Extract a file to a target destination.
    $ gunzip --stdout ${archive-tar-gz} > ${archive-tar}
    try on your machine
    explain this command
  • gunzip:tldr:18cb8 gunzip: Extract a file from an archive, replacing the original file if it exists.
    $ gunzip ${archive-tar-gz}
    try on your machine
    explain this command
  • gunzip:tldr:3148b gunzip: Extract a file and keep the archive file.
    $ gunzip --keep ${archive-tar-gz}
    try on your machine
    explain this command
  • gunzip:tldr:b255c gunzip: Decompress an archive from `stdin`.
    $ cat ${path-to-archive-gz} | gunzip
    try on your machine
    explain this command
  • gunzip:tldr:fd7fc gunzip: List the contents of a compressed file.
    $ gunzip --list ${file-txt-gz}
    try on your machine
    explain this command
back to context overview