mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
517 B
Plaintext
22 lines
517 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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}}`
|