my config file look like this :
eth0 Link encap:Ethernet HWaddr 00:0C:29:0F:9B:82 inet addr:192.168.8.76 Bcast:192.168.8.255 Mask:255.255.25 +5.0 inet6 addr: fe80::20c:29ff:fe0f:9b82/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:280252 errors:0 dropped:0 overruns:0 frame:0 TX packets:106184 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:35501675 (33.8 MiB) TX bytes:11696548 (11.1 MiB) Base address:0x1080 Memory:f4820000-f4840000 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:4664 errors:0 dropped:0 overruns:0 frame:0 TX packets:4664 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:7952486 (7.5 MiB) TX bytes:7952486 (7.5 MiB)
my script file look like this
open FILE,"config.txt" or die "cannot open file : $!"; $i = 1; while(<FILE>) { chomp ($_); # print "===$_"."\n"; @arr=split /\s+/, $_; #print "line is =>$arr[]". "\n\n"; print "Line $i ->$arr[0] $arr[1]"."\n"; foreach $line (@arr) { #print "My Elements -> $line\n"; if ($line =~ (/^addr:(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3} +)/)){ $ipaddr ="$1.$2.$3.$4\n"; print "$ipaddr"; } } $i++; # print $_; }
and when I run output look like this
Line 1 ->eth0 Link Line 2 -> inet 192.168.8.76 Line 3 -> inet6 Line 4 -> UP Line 5 -> RX Line 6 -> TX Line 7 -> collisions:0 Line 8 -> RX Line 9 -> Base Line 10 -> Line 11 ->lo Link Line 12 -> inet 127.0.0.1 Line 13 -> inet6 Line 14 -> UP Line 15 -> RX Line 16 -> TX Line 17 -> collisions:0 Line 18 -> RX
my expected output should be like this
eth0 => 192.168.8.76 lo => 127.0.0.1
I am not getting the expected output

In reply to need to remove the extra line in regular expression by ulaksh

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.