Base: Add man page for zip(1)

This commit is contained in:
Idan Horowitz 2021-03-22 23:14:49 +02:00 committed by Andreas Kling
parent 97216c935a
commit 505c84fdf0
Notes: sideshowbarker 2024-07-18 21:07:35 +09:00

View File

@ -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
```