From bb6dd6c4052b3d3f2ed24c479ff61e1466130aa6 Mon Sep 17 00:00:00 2001 From: Dmytro Voytko Date: Wed, 16 Oct 2024 18:46:31 +0300 Subject: [PATCH] unzip: fix incorrect descriptions (#14244) unzip: correct descriptions --- pages/common/unzip.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/unzip.md b/pages/common/unzip.md index 82b8d5679..0fd9197d6 100644 --- a/pages/common/unzip.md +++ b/pages/common/unzip.md @@ -12,11 +12,11 @@ `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 ...}}` -- 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 ...}}`