Skip to content

Instantly share code, notes, and snippets.

@4np
4np / unzip.sh
Last active January 16, 2023 15:10
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