blob: 36b064cba40e59dc0ef7bd3a6fd9b8a8c4617b6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
```
|