0
I've split a 8 GB my_doc.rar
file into 4 separate files using the following command from my Mac OS X 10.9 terminal
split -b 2000m my_doc.rar my_doc.rar
After splitting the file I've generated: my_doc.raraa
, my_doc.rarab
, my_doc.rarac
, and my_doc.rarad
. Can I make the 4 files .rar
just by removing the extensions? No, because I tried to extract those using UnRarX by renaming as my_doc1.rar
instead of my_doc.raraa
, my_doc2.rar
instead of my_doc.rarab
and so on but it didn’t work! Then how other people would be able to join those using software like WinRaR or UnRarX? Aren’t the generated files .rar files? However, I know I can join those on my Mac by using cat
like this:
cat my_doc.rar* > my_doc.rar
But how would I be able to share the big file with people who don’t use a Mac?
7-zip
seems to handle split.rar
files in Windows without recombining. – AFH – 2014-10-29T01:59:42.117what if the person does't have 7-zip? I want to send separate files as .rar @AFH – ToNoY – 2014-10-29T02:06:39.167
@ToNoY Most Windows users will not have a tool to combine the files anyway as a default. Meaning they will have to install something to combine files anyway. That’s just the nature of this kind of stuff. – JakeGould – 2014-10-29T02:17:35.700
1If the file is purely a binary split, then in Windows the standard command-line
copy
command will reassemble it, as incopy /b file1+file2+file3+file4 file1234
; in Unixcat
will achieve the same, as incat file1 file2 file3 file4 >file1234
. – AFH – 2014-10-29T10:59:53.460