diff options
author | Andres Vieira <anvieiravazquez@gmail.com> | 2020-05-04 19:38:32 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-09 23:50:44 +0200 |
commit | cbbfc08f1d991b4aec09130341681d21be8da117 (patch) | |
tree | dc37e06c69838bfc91f3a0b082cf043264b60358 /Base/usr/share/man/man1 | |
parent | 78f334f4470dabca830150627961de20ca0d524e (diff) | |
download | serenity-cbbfc08f1d991b4aec09130341681d21be8da117.zip |
Docs: Add unzip(1) man page
Diffstat (limited to 'Base/usr/share/man/man1')
-rw-r--r-- | Base/usr/share/man/man1/unzip.md | 25 |
1 files changed, 25 insertions, 0 deletions
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 +``` |