Telnet Program

2002-05-23 Thread Jason Frisvold
I need to write a program that telnets to a specific port and logs all the output to a file. Is there an easy way to do this in perl? I tried this via the command line (telnet 1.2.3.4 23 my.log ) but it apparently buffers everything and I'd like to be able to tail the file at times...

Re: Telnet Program

2002-05-23 Thread drieux
On Thursday, May 23, 2002, at 12:37 , Jason Frisvold wrote: I need to write a program that telnets to a specific port and logs all the output to a file. Is there an easy way to do this in perl? I tried this via the command line (telnet 1.2.3.4 23 my.log ) but it apparently buffers

Re: Telnet Program

2002-05-23 Thread Felix Geerinckx
on Thu, 23 May 2002 19:37:47 GMT, Jason Frisvold wrote: I need to write a program that telnets to a specific port and logs all the output to a file. Is there an easy way to do this in perl? I tried this via the command line (telnet 1.2.3.4 23 my.log ) but it apparently buffers everything

RE: Telnet Program

2002-05-23 Thread Beau E. Cox
; Aloha = Beau. -Original Message- From: Jason Frisvold [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 9:38 AM To: [EMAIL PROTECTED] Subject: Telnet Program I need to write a program that telnets to a specific port and logs all the output to a file. Is there an easy way to do

Re: Telnet Program

2002-05-23 Thread Felix Geerinckx
on Thu, 23 May 2002 19:51:07 GMT, Drieux wrote: the trick of course is that to an arbitrary port you may really want to be at the You can specify a port number in Net::Telnet-new(...) -- felix -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Telnet Program

2002-05-23 Thread drieux
On Thursday, May 23, 2002, at 01:01 , Felix Geerinckx wrote: on Thu, 23 May 2002 19:51:07 GMT, Drieux wrote: the trick of course is that to an arbitrary port you may really want to be at the You can specify a port number in Net::Telnet-new(...) oh heavens yes... but that would be too