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

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

1106 readers
4 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.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 3 weeks ago

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.