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 # to comment.
While
unzipseems not to support multipart archives (you’d need to concatenate them into a single archive first),unaror7zipseem to be working. However, the files would need to be namedarchive.z01,archive.z02, … ,archive.ziphttps://unix.stackexchange.com/questions/40480/how-to-unzip-a-multipart-spanned-zip-on-linux
cat *zip > big.zip && unzip big.zipYou might be able to just throw it down a pipecat *zip | unzip -, but I’m not sure about that.
