hi monks, after executing this code the output dumped in out1.log should be read line by line (complete line) and i have to do the pattern match with that and i have to pick the lines which i require but it is not working plz help me out what changes are to be done....
#!/usr/local/bin/perl
use Net::Telnet;
open ($inputlog, ">out1.log");
$host = "xxx";
$port = "xxxx";
$box = new Net::Telnet(Timeout=>20, Errmode=>'die');
$box->open( Host => $host,
Port => $port,
);
$box->input_log($inputlog);
$box->cmd("i");
$box->close;
open(OUTFILE,">out2.txt");
for($i=26;$i<=40;$i++)
{
my @array = `awk 'NR==$i' out1.log`;
foreach(@array)
{
if($_ =~ m/^\d+\. .*/ig )
{
print OUTFILE ("$&\n");
}
}
}
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.