mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-05 18:52:56 +00:00
794 B
794 B
Name
unzip - extract files from a ZIP archive
Synopsis
$ unzip file.zip [files...]
Description
unzip will extract files from a zip archive to the current directory.
The program is compatible with the PKZIP file format specification.
The optional [files] argument can be used to only extract specific files within the archive (using wildcards) during the unzip process. A _
can be used as a single-character wildcard, and *
can be used as a variable-length wildcard.
Examples
# Unzip the contents from archive.zip
$ unzip archive.zip
Archive: archive.zip
extracting: file1.txt
extracting: file2.png
# Unzip select files from archive.zip, according to a filter
$ unzip archive.zip "*.tx_"
Archive: archive.unzip
extracting: file1.txt