in reply to Re^2: Want to communicate status of the last command to Windows machine
in thread Want to communicate status of the last command to Windows machine
#!/usr/bin/perl use strict; use warnings; use Net::Telnet; my $host = "somehost"; my $username = "test"; my $password = "password"; my $t = new Net::Telnet; $t->dump_log('trace.log'); # detailed packet trace $t->open($host) or die "could not connect to $host: $!\n"; $t->print($username); $t->waitfor('/ssword[:] $/'); $t->print($password); $t->waitfor('/\$ *$/'); $t->print("cp a b"); $t->getline(); # read prompt my $stdout = $t->getline(); print "stdout $stdout\n"; $t->print("echo \$?"); $t->getline(); # read prompt my $exitcode = $t->getline(); print "exit $exitcode\n"; exit($exitcode);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Want to communicate status of the last command to Windows machine
by RedTussock (Acolyte) on Oct 07, 2012 at 17:20 UTC |