this post was submitted on 10 Jan 2025
6 points (100.0% liked)

Linux 101 stuff. Questions are encouraged, noobs are welcome!

1095 readers
10 users here now

Linux introductions, tips and tutorials. Questions are encouraged. Any distro, any platform! Explicitly noob-friendly.

founded 2 years ago
MODERATORS
 

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.

top 2 comments
sorted by: hot top controversial new old

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.

[โ€“] Successful_Try543@feddit.org 4 points 8 hours ago* (last edited 8 hours ago)

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