in reply to IO::Pty, Net::Telnet and SSH [SOLVED]

Looks like all I had to do was:

$pty->make_slave_controlling_terminal();

.. after calling $tty = $pty->slave.

Hope it helps somebody else in the same situation!

Thanks to all who replied and offered help. I appreciate it!

  • Comment on Re: IO::Pty, Net::Telnet and SSH [SOLVED]

Replies are listed 'Best First'.
Re^2: IO::Pty, Net::Telnet and SSH [SOLVED]
by Anonymous Monk on Apr 03, 2008 at 16:03 UTC
    Thanks for sharing your solution. I'm one of those someone else's in the same situation that you helped!

    I am curious why we needed that line, and so many others seemed to work fine without it?!?! One of those days when I have some free time....
Re^2: IO::Pty, Net::Telnet and SSH [SOLVED]
by Anonymous Monk on Oct 27, 2008 at 01:45 UTC
    I got benefit from ur code "$pty->make_slave_controlling_terminal();" also!!! thanks !! good luck, gonza. gengxi@gmail.com
Re^2: IO::Pty, Net::Telnet and SSH [SOLVED]
by Anonymous Monk on Feb 02, 2010 at 14:12 UTC
    Thanks, It's really helps. Sergei
Re^2: IO::Pty, Net::Telnet and SSH [SOLVED]
by Anonymous Monk on Jun 09, 2010 at 16:21 UTC
    Thank you!
      Awesome! You solved my problem as well....was driving me nuts! Thank you!
Re^2: IO::Pty, Net::Telnet and SSH [SOLVED]
by Anonymous Monk on Feb 22, 2011 at 01:25 UTC
    Thank you! It worked!