Unzip: Difference between revisions
Jump to navigation
Jump to search
-qq
(Created page with "=Internal= * Linux =Overwrite Already Existing Files= <pre> unzip -o ... </pre>") |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
* [[Linux#Commands|Linux]] | * [[Linux#Commands|Linux]] | ||
=Options= | |||
==-q== | |||
Quiet mode | |||
==-qq== | |||
Quieter | |||
=Overwrite Already Existing Files= | =Overwrite Already Existing Files= | ||
< | unzip -o ... | ||
unzip - | |||
</ | =Extract into a Target Directory= | ||
<font color=darkgray>This works on Mac, test on Linux.</font> | |||
unzip <''source-file''.zip> -d <''target-dir''> | |||
where the content of source-file.zip will be extracted into the specified target directory. The target directory is created if it does not exist. | |||
=List Content= | |||
unzip -l <''source-file''.zip> | |||
==List Partial Content== | |||
Lists only the files under config/, if any: | |||
unzip -l <''source-file''.zip> config/* |
Latest revision as of 08:27, 5 March 2020
Internal
Options
-q
Quiet mode
Quieter
Overwrite Already Existing Files
unzip -o ...
Extract into a Target Directory
This works on Mac, test on Linux.
unzip <source-file.zip> -d <target-dir>
where the content of source-file.zip will be extracted into the specified target directory. The target directory is created if it does not exist.
List Content
unzip -l <source-file.zip>
List Partial Content
Lists only the files under config/, if any:
unzip -l <source-file.zip> config/*