HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

funzip — Print the content of the first (non-directory) member in an archive without extraction. More informa

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandfirstcontentcliprintfunzip

Problem

How to use the funzip command: Print the content of the first (non-directory) member in an archive without extraction. More information: <https://manned.org/funzip>.

Solution

funzip — Print the content of the first (non-directory) member in an archive without extraction. More information: <https://manned.org/funzip>.

Print the content of the first member in a Zip archive:
funzip {{path/to/archive.zip}}


Print the content in a gzip archive:
funzip {{path/to/archive.gz}}


Decrypt a Zip or gzip archive and print the content:
funzip -password {{password}} {{path/to/archive}}

Code Snippets

Print the content of the first member in a Zip archive

funzip {{path/to/archive.zip}}

Print the content in a gzip archive

funzip {{path/to/archive.gz}}

Decrypt a Zip or gzip archive and print the content

funzip -password {{password}} {{path/to/archive}}

Context

tldr-pages: common/funzip

Revisions (0)

No revisions yet.