From cbbfc08f1d991b4aec09130341681d21be8da117 Mon Sep 17 00:00:00 2001 From: Andres Vieira Date: Mon, 4 May 2020 19:38:32 +0200 Subject: [PATCH] Docs: Add unzip(1) man page --- Base/usr/share/man/man1/unzip.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Base/usr/share/man/man1/unzip.md diff --git a/Base/usr/share/man/man1/unzip.md b/Base/usr/share/man/man1/unzip.md new file mode 100644 index 0000000000..cccfc95005 --- /dev/null +++ b/Base/usr/share/man/man1/unzip.md @@ -0,0 +1,25 @@ +## Name + +unzip - extract files from a ZIP archive + +## Synopsis + +```**sh +$ unzip file.zip +``` + +## Description + +unzip will extract files from a zip archive to the current directory. + +The program is compatible with the PKZIP file format specification. + +## Examples + +```sh +# Unzip the contents from archive.zip +$ unzip archive.zip +Archive: archive.zip + extracting: file1.txt + extracting: file2.png +```