Posts

Showing posts with the label unzip

How to unzip multiple zip files?

Build a shell script and run it. The content of the shell script is as follows:  #!/bin/sh for z in *.zip; do unzip "$z"; done