How to unzip multiple zip files? Get link Facebook X Pinterest Email Other Apps - January 06, 2022 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 Read more