mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Docs: Add unzip(1) man page
This commit is contained in:
parent
78f334f447
commit
cbbfc08f1d
Notes:
sideshowbarker
2024-07-19 06:47:13 +09:00
Author: https://github.com/zlotny Commit: https://github.com/SerenityOS/serenity/commit/cbbfc08f1d9 Pull-request: https://github.com/SerenityOS/serenity/pull/2100 Reviewed-by: https://github.com/awesomekling Reviewed-by: https://github.com/bugaevc Reviewed-by: https://github.com/linusg
1 changed files with 25 additions and 0 deletions
25
Base/usr/share/man/man1/unzip.md
Normal file
25
Base/usr/share/man/man1/unzip.md
Normal file
|
@ -0,0 +1,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
|
||||
```
|
Loading…
Reference in a new issue