Saturday, April 2, 2022

[SOLVED] Unzip All Files In A Directory

Issue

I have a directory of ZIP files (created on a Windows machine). I can manually unzip them using unzip filename, but how can I unzip all the ZIP files in the current folder via the shell?

Using Ubuntu Linux Server.


Solution

This works in bash, according to this link:

unzip \*.zip



Answered By - ChristopheD
Answer Checked By - Terry (WPSolving Volunteer)