Re: file transfer via telnet

2003-02-22 Thread whitnl73
On Fri, 21 Feb 2003 [EMAIL PROTECTED] wrote: > However, to downoad a file by telnet, capture stdout so: > > telnet hostname | tee logfile > > uuencode remotefile remotefile > exit > tr -d "r" < logfile | uudecode tr -d "\r" < logfile | uudecode of course. Sorry. Lawson -- ---oops--- __

Re: file transfer via telnet

2003-02-22 Thread whitnl73
On Sat, 22 Feb 2003, Thiago F.G. Albuquerque wrote: > > >However, to downoad a file by telnet, capture stdout so: > > > >telnet hostname | tee logfile > > > >uuencode remotefile remotefile > >exit > >tr -d "r" < logfile | uudecode > > Ok, I understand. But what is this 'tr -d "r"' for? It is

Re: file transfer via telnet

2003-02-22 Thread J.
On Sat, 22 Feb 2003, Thiago F.G. Albuquerque wrote: > > >However, to downoad a file by telnet, capture stdout so: > > > >telnet hostname | tee logfile > > > >uuencode remotefile remotefile > >exit > >tr -d "r" < logfile | uudecode > > Ok, I understand. But what is this 'tr -d "r"' for? > >

Re: file transfer via telnet

2003-02-22 Thread Thiago F.G. Albuquerque
However, to downoad a file by telnet, capture stdout so: telnet hostname | tee logfile uuencode remotefile remotefile exit tr -d "r" < logfile | uudecode Ok, I understand. But what is this 'tr -d "r"' for? Thiago - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in

Re: file transfer via telnet

2003-02-21 Thread whitnl73
On Fri, 21 Feb 2003 [EMAIL PROTECTED] wrote: > I year or two back, I remember reading about a way to transfer > a file using telnet. It think it involved redirection from one > tty to another, but I don't remember the details. I now find > myself in a situation with telnet access, but no ftp (or

Re: file transfer via telnet

2003-02-21 Thread J.
On Fri, 21 Feb 2003 [EMAIL PROTECTED] wrote: > I year or two back, I remember reading about a way to transfer > a file using telnet. It think it involved redirection from one > tty to another, but I don't remember the details. I now find > myself in a situation with telnet access, but no ftp (

Re: file transfer via telnet

2003-02-21 Thread Jos Lemmerling
On Thu, 20 Feb 2003, Eckhardt, Rodolpho H. O. wrote: > If I'm not mistaken, you cannot do that because telnet transfers only ASCII >caracters or > something like that (terminal related caracters)... There isn't a way to tell it to > transfer something in binary (like ftp's "binary"). Isn't there

Re: file transfer via telnet

2003-02-20 Thread Eckhardt, Rodolpho H. O.
If I'm not mistaken, you cannot do that because telnet transfers only ASCII caracters or something like that (terminal related caracters)... There isn't a way to tell it to transfer something in binary (like ftp's "binary"). But if you find a way, please e-mail it to me! Best regards, Rodolpho

Re: file transfer via telnet

2003-02-20 Thread Nathan
Hi Steven, > I year or two back, I remember reading about a way to transfer > a file using telnet. It think it involved redirection from one > tty to another, but I don't remember the details. I now find > myself in a situation with telnet access, but no ftp (or anything > else I could use to u

file transfer via telnet

2003-02-20 Thread ichi
I year or two back, I remember reading about a way to transfer a file using telnet. It think it involved redirection from one tty to another, but I don't remember the details. I now find myself in a situation with telnet access, but no ftp (or anything else I could use to upload files). Do any