I. Create split zip archive
- To create a split zip archive (a series of files named zip, z01, z02...), run following command in Terminal:
zip -s 100m -x "*.DS_Store" -r split-foo.zip foo/
II. Extract split zip archive
- To extract a split zip archive (a series of files named zip, z01, z01...), run following command in Terminal:
- First, combine the split archive to a single archive:
zip -s 0 split-foo.zip --out unsplit-foo.zip
- Extract the single archive using unzip:
unzip unsplit-foo.zip
- First, combine the split archive to a single archive:
Great! It works for me.
ReplyDeleteThank you.
Thanks alot! it worked.
ReplyDeleteThanks for making this available to others. So fine.
ReplyDelete