답변:
터미널의 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 파일을 여러 개의 작은 zip 파일로 분할하십시오. 분할 크기를 설정하려면 -n 스위치를 사용하십시오.
[1] http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/zip.1.html