I need to split up a large file on windows so I can upload it in parts to a linux machine. I'm looking to do the opposite to this hopefully with some native utilities to keep it simple.

I understand the linux side of the equation to be cat filea fileb > file

what is the simples way to split files on a windows machine which can then be joined together via cat on a linux machine?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

or

  • install 7z (free) works for Windows and Linux. Use the -v option (volume) -v100m will split the archive into 100MB files.

7z -v option supports b k m g (bytes, kilobytes, megabytes, gigabytes)

upoad files and extract them from Linux

link|improve this answer
or cygwin which will give you the split command on windows (as i've learnt) cygwin.com/cygwin-ug-net.html – pstanton Mar 21 '11 at 20:46
feedback

Your Answer

 
or
required, but never shown

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