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.

  • sin_free_for_00_days
    link
    fedilink
    arrow-up
    1
    ·
    5 hours 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.