mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
26 lines
399 B
Markdown
26 lines
399 B
Markdown
|
|
## 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
|
||
|
|
```
|