up vote 0 down vote favorite
1
share [g+] share [fb]

Is there any program on mac which can do it (free ones are preferred)?

link|improve this question

39% accept rate
feedback

2 Answers

7-zip can do this and it's open source and free.

You can find the osx downloads towards the bottom of the page.

link|improve this answer
I was checking this but have not find any info regarding this on their website. – itsaboutcode Feb 3 '10 at 23:22
@itsaboutcode - Their website is very lacking when it comes to documentation of what 7-zip can do. But my windows version of 7-zip can split large archives into smaller so I assume the mac version can do the same. – Nifle Feb 3 '10 at 23:37
feedback

Any command-line archiving tool can do this when combined with the split command:

gzip example:

tar cf – |gzip -9 -c |split -b 100M split_archive.tgz.

The files generated will look like:

split_archive.tgz.aa
split_archive.tgz.ab
...

To put them back together, use cat split_archive.tgz*

If you already made an 'Archive.zip' of some files using the right click menu, you can split it after the fact by typing in a terminal:

split -b 500m Archive.zip split_archive.zip.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.