Answers:
在终端中的zip命令上使用-s开关。因此,如果您的文件夹名为FolderName
zip -r -s 64 archive.zip FolderName/
分割的大小为64(在这种情况下为64Mb)。
Use -s to set the split size and create a split archive.
The size is given as a number followed optionally by one
of k (kB), m (MB), g (GB), or t (TB) (the default is m). [1]
使用zipsplit将zip文件拆分为多个较小的zipfile。使用-n开关设置拆分的大小。
[1] http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/zip.1.html