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.
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.