Hi,
I've written two scripts - a sender and a receiver - that sends a file across a TCP connection.
The sender reads the file, then splits it in to chunks and populates it in an array. It then creates a TCP connection to the the receiver and sends the chunks across.
The receiver populates t...