From def44ed37fbf0bbac96c7a3ccab818eac81854c6 Mon Sep 17 00:00:00 2001 From: WrathZA Date: Tue, 5 Dec 2017 19:53:15 +0200 Subject: [PATCH] unzip: include example of extracting to console. (#1705) --- pages/common/unzip.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/common/unzip.md b/pages/common/unzip.md index 8cc057d1d8..6f7d4417aa 100644 --- a/pages/common/unzip.md +++ b/pages/common/unzip.md @@ -12,4 +12,8 @@ - List the contents of a zip file without extracting: -`unzip -l {{file}}` +`unzip -l {{file.zip}}` + +- Extract the contents of the file(s) to stdout alongside the extracted file names: + +`unzip -c {{file.zip}}`