Skip to content

Instantly share code, notes, and snippets.

@atkvishnu
Created November 9, 2021 14:27
Show Gist options
  • Save atkvishnu/b66213c37322e32c957ea0d074614559 to your computer and use it in GitHub Desktop.
Save atkvishnu/b66213c37322e32c957ea0d074614559 to your computer and use it in GitHub Desktop.
Combining the split zip files downloaded from Google Drive

A solution for Mac or Linux command line.

mkdir combined
unzip '*.zip' -d combined

Or, for Windows Powershell, try:

Get-ChildItem 'path to folder' -Filter *.zip | Expand-Archive -DestinationPath 'path to extract' -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment