diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-03-22 23:14:49 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-23 16:09:36 +0100 |
commit | 505c84fdf084200a97b32644941c9d8f6d9728f6 (patch) | |
tree | 5cacade9dfc740869734e7593aef4dcd32b7b021 /Base/usr | |
parent | 97216c935a6a008d726c3cefb433d7d7ab8ad7d2 (diff) | |
download | serenity-505c84fdf084200a97b32644941c9d8f6d9728f6.zip |
Base: Add man page for zip(1)
Diffstat (limited to 'Base/usr')
-rw-r--r-- | Base/usr/share/man/man1/zip.md | 25 |
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 +``` |