How to uncompress a multipart zip file

I'm having trouble figuring out how I can uncompress these parts into one file. I've tried "zip *.zip > file.zip" with no success.

10 points · 2 comments · view on lemmy.world

2 Comments

Successful_Try543@feddit.org · 4 pts · 1y

While unzip seems not to support multipart archives (you'd need to concatenate them into a single archive first), unar or 7zip seem to be working. However, the files would need to be named archive.z01, archive.z02, ... , archive.zip

https://unix.stackexchange.com/questions/40480/how-to-unzip-a-multipart-spanned-zip-on-linux

sin_free_for_00_days@sopuli.xyz · 2 pts · 1y

cat *zip > big.zip && unzip big.zip You might be able to just throw it down a pipe cat *zip | unzip -, but I'm not sure about that.