COMBINING SPLIT MESSAGES

You need to copy all the split parts into one big file

Example: Assuming you requested a files bi10.zip and you received the
file in 4 parts, bi10_zip.001, bi10_zip.002, bi10_zip.003 and
bi10_zip.004

For UNIX, use the cat command
	 cat bi10_zip.* > bi10.zip or
	cat bi10_zip.001 bi10_zip.002 bi10_zip.003 bi10_zip.004 > bi10.zip

For MSDOS & Windows, use the copy command 

	copy/b bi10_zip.001+bi10_zip.002+bi10_zip.003+bi10_zip.004 bible10.zip

Now you can use your favourite unzipping utility (pkunzip, unzip or
winzip) to open the one big bi10.zip

Or if it is an executable, you can try running it directly.

Thanks
Clement

Received on Thursday, 10 December 1998 03:28:24 UTC