Combine the split zip files downloading from Google Drive [closed]

Here’s a solution for Mac or Linux command line.

mkdir combined
unzip '*.zip' -d combined

Or, for Windows Powershell, you can try (courtesy of source):

Get-ChildItem 'path to folder' -Filter *.zip | Expand-Archive -DestinationPath 'path to extract' -Force

Leave a Comment