-
-
Save yegorgavrilov/72ae149fc28afa3c0b288c4bbf8b69c7 to your computer and use it in GitHub Desktop.
Unzip multipart zip file on Mac OS X / Linux / Unix oneliner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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