1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 18:55:34 +02:00

unzip: fix incorrect descriptions (#14244)

unzip: correct descriptions
This commit is contained in:
Dmytro Voytko 2024-10-16 18:46:31 +03:00 committed by GitHub
parent 0910be50cb
commit bb6dd6c405
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,11 +12,11 @@
`unzip {{path/to/archive1.zip path/to/archive2.zip ...}} -d {{path/to/output}}` `unzip {{path/to/archive1.zip path/to/archive2.zip ...}} -d {{path/to/output}}`
- Extract files/directories from archives to `stdout`: - Extract files/directories from archives to `stdout` alongside the extracted file names:
`unzip -c {{path/to/archive1.zip path/to/archive2.zip ...}}` `unzip -c {{path/to/archive1.zip path/to/archive2.zip ...}}`
- Extract the contents of the file(s) to `stdout` alongside the extracted file names: - Extract an archive created on Windows, containing files with non-ASCII (e.g. Chinese or Japanese characters) filenames:
`unzip -O {{gbk}} {{path/to/archive1.zip path/to/archive2.zip ...}}` `unzip -O {{gbk}} {{path/to/archive1.zip path/to/archive2.zip ...}}`