vote up -2 vote down star

I tried the code, instead of printing the lines SYSTEM up to the beginning of DATE, it prints an infinite loop "SYSTEM:tipihf6".What's wrong with the code?

#! /usr/bin/perl

print ("Content-type: text/html\n\n");

use CGI qw(:standard);
use strict;
use warnings;


my ($in_filename,$startSearchText, $endSearchText,$inputLine);
$in_filename='j.txt';

if (open(INFILE, "<$in_filename"))
{
$startSearchText="SYSTEM";
$endSearchText="^DATE:";
my @inputLine;

while (<INFILE>)
{
chomp;
$inputLine=$_;
if ($inputLine=~ /$startSearchText/i)
{
do
{
print "$inputLine\n";

<INFILE>;
chomp;
$inputLine=$_;
}
until ($inputLine=~ /$endSearchText/i);
}
}
close(INFILE);
}


"j.txt"
DATE :29-Jan-2008-213243
SYSTEM :tipihf6
HANDLER :CAS 127
DEVICE :DVC5410AGGUR16
PROGRAM :FC5416E2
TEMPP :105
SUPPORT :Agus-10
BOXNUMFRM:FU0663
BOXNUMTO :FU0663
CONTACFRM:C-Y144-0146_0062
CONTACTO :C-Y144-0146_0062
Problem :Opens Fail
Problem Description : OpensFail @ Ck #1 B1
Root Cause : Others
Root Cause Description : depressed
1st SMS : 8063112
ACTIVITY : Interface_Down
: changed depressed & worn out contactor pins

DATE : 30-Jan-2008-213243
SYSTEM : hf6
HANDLER : CAS 127
DEVICE : DVC54
PROGRAM : FC5
TEMPP : 105
SUPPORT : HARRY T.
BOXNUMFRM: FU0663
BOXNUMTO : FU0663
CONTACFRM: C-Y144-0146_0062
CONTACTO : C-Y144-0146_0062
REPDT : 2 hr
Problem : TS detect part
Root Cause : Others
Root Cause Description : wrong orientation (diamond) 1st SMS : 8072460
ACTIVITY : Handler_Down
: Endorsed by allen B., Device was inserted by pusher
: initial check:


desired output:

SYSTEM :tipihf6
HANDLER :CAS 127
DEVICE :DVC5410AGGUR16
PROGRAM :FC5416E2
TEMPP :105
SUPPORT :Agus-10
BOXNUMFRM:FU0663
BOXNUMTO :FU0663
CONTACFRM:C-Y144-0146_0062
CONTACTO :C-Y144-0146_0062
Problem :Opens Fail
Problem Description : OpensFail @ Ck #1 B1
Root Cause : Others
Root Cause Description : depressed
1st SMS : 8063112
ACTIVITY : Interface_Down
: changed depressed & worn out contactor pins

flag

0% accept rate
To get better help and be more productive, you might want to see "How to Ask a Question", catb.org/~esr/faqs/… – brian d foy Oct 22 '08 at 15:23

closed as not a real question by brian d foy Oct 22 '08 at 15:22

2 Answers

vote up 5 vote down

You are never putting a new value into $_ in your until loop. This:

  do {
    print "$inputLine\n";

    <INFILE>;
    chomp;
    $inputLine=$_;
  } until ($inputLine=~ /$endSearchText/i);

Should be this:

  do {
    print "$inputLine\n";

    $_ = <INFILE>;
    chomp;
    $inputLine=$_;
  } until ($inputLine=~ /$endSearchText/i);

(Note when I say "should" I mean "the smallest change possible to make your code not be in an infinite loop". You formatting and style's a bit odd for my taste and the code may have other bugs.)

link|flag
You beat me to it with a much more pleasant response than I was preparing... :) – edg Oct 22 '08 at 13:02
Perhaps this poster (Shiel) is in really bad need of a quite unpleasant response? – Manni Oct 22 '08 at 13:08
vote up 0 vote down

How about:

open my $ifh, '<', $file
  or die "Cannot open '$file' for reading: $!";
map { print if m/\Q$pattern\E/ } <$ifh>;
close($ifh);
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.