blob: cccfc95005c43a2976f9c7e60b952e7454eac8e4 (
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
unzip - extract files from a ZIP archive
## Synopsis
```**sh
$ unzip file.zip
```
## Description
unzip will extract files from a zip archive to the current directory.
The program is compatible with the PKZIP file format specification.
## Examples
```sh
# Unzip the contents from archive.zip
$ unzip archive.zip
Archive: archive.zip
extracting: file1.txt
extracting: file2.png
```
|