Leser: 1
1 Eintrag, 1 Seite |
1
2
3
4
5
6
7
8
9
10
my $hostname="xxxxxxxxxxxxxxxxxxxxxxx";
my $username="xxxxx";
my $passwd="xxxxxxxxxxxxxxx";
my $obj = new Net::Telnet (Timeout => 100, Prompt => '/[%#>] $/');
$obj->open($hostname);
$obj->login($username, $passwd);
# mein Widget
$logwin->insert('end', $obj->input_log );
$obj->cmd("test.pl");
1 Eintrag, 1 Seite |