summaryrefslogtreecommitdiff
path: root/Base/usr
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2021-03-22 23:14:49 +0200
committerAndreas Kling <kling@serenityos.org>2021-03-23 16:09:36 +0100
commit505c84fdf084200a97b32644941c9d8f6d9728f6 (patch)
tree5cacade9dfc740869734e7593aef4dcd32b7b021 /Base/usr
parent97216c935a6a008d726c3cefb433d7d7ab8ad7d2 (diff)
downloadserenity-505c84fdf084200a97b32644941c9d8f6d9728f6.zip
Base: Add man page for zip(1)
Diffstat (limited to 'Base/usr')
-rw-r--r--Base/usr/share/man/man1/zip.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/zip.md b/Base/usr/share/man/man1/zip.md
new file mode 100644
index 0000000000..36b064cba4
--- /dev/null
+++ b/Base/usr/share/man/man1/zip.md
@@ -0,0 +1,25 @@
+## Name
+
+zip - create ZIP archives
+
+## Synopsis
+
+```**sh
+$ zip [--recurse-paths] [zip file] [files...]
+```
+
+## Description
+
+zip will pack the specified files into a zip archive, compressing them when possible.
+
+The program is compatible with the PKZIP file format specification.
+
+## Examples
+
+```sh
+# Zip
+$ zip archive.zip file1.txt file2.png
+Archive: archive.zip
+ adding: file1.txt
+ adding: file2.png
+```