The set of programs "splitu" and "mergeu" to split large file 
into smaller chunks and then merge back. 
The folowing files are in this package.
readme.txt - this file
splitu     - split large file program
mergeu     - merge back chunks program

This set of programs can be distributed and used freely as long the copyright 
notice is not removed and program is not modified.
This set of programs reads and writes files compatible with program SplitWin
in MS Windows 3.1 environment.
which can be found in:
ftp://oak.oakland.edu/SimTel/win3/fileutil/spltw103.zip
or SimTel mirrors. SplitWin for windows is written in C++. It is shareware. 
Registered users will receive MSDOS version of splitu (split), mergeu (merge),
and their C source, which can be compiled and run in UNIX systems (Tested
on Sun, HP, DEC). 

PROGRAM NAME: splitu

PURPOSE: To split one big file into set of smaller files

USAGE:
        splitu filename [filesize]

Where:
filename  - file name of large file to be cut on chunks,
            path can be used, chunks will be placed in
            current directory.       
filesize  - size of chunk file. This parameter is
            optional and when not specified it has
            default value 730000 bytes.

DESCRIPTION:
Program reads file "filename" and creates in current directory
set of chunks with following name: "filename" and Znn extension.

Eg: if we call the program as below:

splitu applic.tgz 50000

and size of applic.tgz is 139000 bytes.
Program will split file into 3 parts 
    applic.Z00
    applic.Z01
    applic.Z02
in the current directory.

PROGRAM NAME: mergeu

PURPOSE: To restore file from chunks

USAGE:     
       mergeu fname

Where: fname - file name or path of chunk file (extension can be omitted)

Warning: All the chunk files must be in the same directory.

DESCRIPTION:
Program will create file in current directory with original name 
and will merge all chunks into original file. If any of chunks files 
is missing program will fail to create original file.

LIKE ANYTHING ELSE THAT'S FREE, SPLITU AND ITS ASSOCIATED UTILITIES ARE
PROVIDED AS IS AND COME WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR
IMPLIED. IN NO EVENT WILL THE AUTHOR BE LIABLE FOR ANY DAMAGES
RESULTING FROM THE USE OF THIS SOFTWARE.

