remote bash$ cat > upload.txt |
Alt-S Upload ascii [ascii upload - Press CTRL-C to quit] |
アップロードが完了するのを待ちます…
ASCII upload of "upload.txt"
10.0 Kbytes transferred at 3900 CPS... Done.
READY: press any key to continue... |
Ctrl-D remote bash$ |
ハードウェアフロー制御をしていないと、ASCII アップロードで、 たまに文字落ちが起こります。
バイナリファイルをアップロードするには、それを ASCII にエンコードし、アップロードします。そしてそれからもう一度バイナリに デコードします。
localhost bash$ uuencode upload.bin < upload.bin > upload.txt |
Alt-S Upload ascii [ascii upload - Press CTRL-C to quit] |
アップロードが完了するのを待ちます…
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 |