File splitter?

MLE

Upstate, New York
Is there such a program that would allow me to "split" a file in half?? For example, I want to put an .avi movie onto a 700MB CD, but it's 705MB. Is there a program that would allow me to split the movie in half so I would be able to put it on a CD? Let me know. Thanks!
 
Use split from the command line.

split -b 650m <file> <outfile>

To join them back together use:

cat file1 file2 > Joined.avi
 
Back
Top