Last active
January 16, 2023 15:10
-
-
Save 4np/2913012 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 |
useful for multi-part gdrive zip downloads 😄
Thanks very useful when download multipart from Gdrive
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hell yea thanks man