Hi ,
I am required to execute a command from my windows machine on to a Linux machine. Currently I am using Net::Telnet package for that.
<pr>
Now that I want to check the status of that command on my Windows machine. Is there some way where in I can return a magic string to my windows machine on the basis of value of $? variable on Linux machine.
I am attaching my code here.
$username="imail1";
$passwd="imail1";
use Net::Telnet ();
$t = new Net::Telnet (Timeout => 10);
$t->open("172.16.14.74");
$t->print($username);
$t->print($passwd);
sleep(5);
open(FHH, ">output.txt");
print FHH $t->cmd("cp opwv/config/config.db ./");
$flag=1;
close(FHH);
open(FH,"<output.txt");
while(<FH>)
{
if($_ =~ "ERROR"){
$flag = 0;
}
}
if ($flag == 0) {
print "Fail";
}
else {
print "Pass";
}
close(FH);
unlink("output.txt");
Please let me know whether I can modify the same code or I need to use some totally different module than Net::Telnet..
Prompt reply would be appreciated.. :)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.