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.
You must log in or register to comment.
cat *zip > big.zip && unzip big.zip
You might be able to just throw it down a pipecat *zip | unzip -
, but I’m not sure about that.While
unzip
seems not to support multipart archives (you’d need to concat
enate them into a single archive first),unar
or7zip
seem to be working. However, the files would need to be namedarchive.z01
,archive.z02
, … ,archive.zip
https://unix.stackexchange.com/questions/40480/how-to-unzip-a-multipart-spanned-zip-on-linux