I'm searching for a solution to take a big directory and make a multiarchive zip backup with each zipfile being 1gig. I've looked at zipsplit but appearently you can not actually split files, ie. one of the files in that directory is 5gig, so zipsplit can't handle it because it's bigger then the target size of the zipfile. I like to make zipfiles to make it easier for windows users to access the files.
I do not use zip but tar+gzip. What I do is
This will create files xaa xab etc.. (you can change the prefix. Check the man pages)
To restore simply
cat
the files together, i.e.It looks like you can do that with
zip
to, using a-
for filename, something like (untested)