1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:27:44 +00:00

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

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