remote bash$ cat > upload.txt |
Alt-S Upload ascii [ascii upload - Press CTRL-C to quit] |
Wait for upload to complete…
ASCII upload of "upload.txt"
10.0 Kbytes transferred at 3900 CPS... Done.
READY: press any key to continue... |
Ctrl-D remote bash$ |
Without hardware flow control ASCII upload will drop the occassional character.
To upload binary files encode them into ASCII, upload them, and then decode them into binary again.
localhost bash$ uuencode upload.bin < upload.bin > upload.txt |
Alt-S Upload ascii [ascii upload - Press CTRL-C to quit] |
Wait for upload to complete…
ASCII upload of "upload.txt"
10.0 Kbytes transferred at 3900 CPS... Done.
READY: press any key to continue... |
Ctrl-D remote bash$ |
remote bash$ uudecode < upload.txt |
localhost bash$ cksum upload.bin 1719761190 76 upload.bin |
remote bash$ cksum upload.bin 1719761190 76 upload.bin |
This sounds like something that should be automated. Entering from stage left is Xmodem.