You have filename.{z01,z02,...,zip}. You need to do:
zip -s- filename.zip -O fixed.zip
… and then extract from fixed.zip with unzip (see man unzip).
If that doesn’t work, you can try with:
cat filename.{z01,z02,...,zip} > temp.zip && unzip temp.zip
Advertisements