↧
Answer by PerlDuck for Split zip into smaller zip files
You need zipsplit which is part of the zip package:zipsplit -n $(( 250 * 1024 * 1024 )) your_zipfile.zipIt splits an existing zipfile into smaller chunks. The size of eachchunk can be supplied via the...
View ArticleSplit zip into smaller zip files
I need weekly to upload bunch of pdf file to grading platform, in the form of zip, but the website has limit of 250Mb per zip file, and it takes me too much time to split the zip I have into smaller...
View Article