Cut and Paste are a package of programs designed
to aid in downloading files and transferring large files to small media
formats by breaking them down into byte-sized chunks. For example,
unstable FTP's will allow a user to download complete pieces of a large
file rather than not getting anyting if the FTP connection fails during
download the large file. Unlike UNIX dd, this command is written
in vanilla ANSI C and has been compiled and used under multiple platforms.
Cut
Current Version:
Version 1.0 Feb, 1999
Usage:
cut filename prefix ext [new_filesize]
Info: Cuts the file specified
by filename into a series of files of size new_filesize (default it
1 MB or 1,048,576 bytes) with the names prefix_1.ext to prefix_n.ext
as required by the size of filename. This program is written in ANSI C
and should be compilable across a large variety of platforms.
Paste
Current Version:  
Version 1.0 Mar, 1999
Usage:
paste outputfile prefix ext
Info: Pastes the file back together
from cut with the format prefix_1.ext to prefix_n.ext.