
Read Time:19 Second
How to Unzip Multiple Files with Command Line
It’s actually pretty simple, just wrap the *.zip
with apostrophe (‘) like the following snippet.
unzip '*.zip'
Example:
$ unzip '*.zip'
Archive: file-01.zip
inflating: file-01.iso
Archive: file-02.zip
inflating: file-02.iso
Archive: file-03.zip
inflating: file-03.iso
3 archives were successfully processed.
That’s it. Done.