Guest User

Untitled

a guest
Jun 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. To split the large sized zip file, use following command:
  2.  
  3. zip ExistingZipName.zip --out ./TargetFolderName/AnyDesiredName.zip -s 20m
  4.  
  5. It will create AnyDesiredName.zip along with some more small zips with extension .z01, .z02, .z03, .z04...etc.
  6.  
  7. ---------------------------------------------------------------------------------------------------------------
  8.  
  9. To combine/merge already split files into one Main.zip, use following command:
  10.  
  11. zip -F YourDotZipFileName.zip --out ./TargetFolderName/AnyDesiredName.zip
  12.  
  13. Note that, you don't need to specify name(s) of other small zip files (e.g. .z01, .z02, etc)
Add Comment
Please, Sign In to add comment