2

I downloaded a document, which is compressed as zip file and segmented, their names are :

document.z01 document.z02 document.zip

I'm at a loss on how to unzip them.

don_crissti
  • 79,330
  • 30
  • 216
  • 245
lily
  • 155
  • 1
  • 3
  • 10

1 Answers1

1

First you have to concatenate all the files into a single file, and then extract the single file.

zip -F document.zip --output big_document.zip
unzip big_document.zip
jherran
  • 3,869
  • 3
  • 22
  • 34