Help for this page

Select Code to Download


  1. or download this
    my $line;
    while ($line = $telnet->getline)
    {
      print $line;
    }
    
  2. or download this
    my $line;
    while ( $line = $telnet->getline(Timeout=>86400000) )
    {
      print $line;
    }