Skip to content

Instantly share code, notes, and snippets.

@yegorgavrilov
Forked from 4np/unzip.sh
Created June 13, 2018 14:23
Show Gist options
  • Save yegorgavrilov/72ae149fc28afa3c0b288c4bbf8b69c7 to your computer and use it in GitHub Desktop.
Save yegorgavrilov/72ae149fc28afa3c0b288c4bbf8b69c7 to your computer and use it in GitHub Desktop.
Unzip multipart zip file on Mac OS X / Linux / Unix oneliner
cat *.zip > combined.zip;zip -FF combined.zip --out combined-fixed.zip;rm combined.zip;yes A|unzip -qq combined-fixed.zip;rm combined-fixed.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment