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.
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.
2 Comments
Successful_Try543@feddit.org · 4 pts · 1y
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
sin_free_for_00_days@sopuli.xyz · 2 pts · 1y
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.