
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 machineexplain 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 machineexplain this command
-
gunzip:tldr:3148b gunzip: Extract a file and keep the archive file.$ gunzip --keep ${archive-tar-gz}try on your machineexplain this command
-
gunzip:tldr:b255c gunzip: Decompress an archive from `stdin`.$ cat ${path-to-archive-gz} | gunziptry on your machineexplain this command
-
gunzip:tldr:fd7fc gunzip: List the contents of a compressed file.$ gunzip --list ${file-txt-gz}try on your machineexplain this command