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:
parent
97216c935a
commit
505c84fdf0
1 changed files with 25 additions and 0 deletions
25
Base/usr/share/man/man1/zip.md
Normal file
25
Base/usr/share/man/man1/zip.md
Normal 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
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue